From: Rob H. <for...@us...> - 2003-08-10 00:18:09
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv11381/bin Modified Files: Tag: release-1_0-branch sandweb-expect Log Message: gets around the problem Micah Anderson noticed, when you have the wrong password Index: sandweb-expect =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb-expect,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -U2 -r1.13 -r1.13.2.1 --- sandweb-expect 1 Apr 2003 20:14:11 -0000 1.13 +++ sandweb-expect 10 Aug 2003 00:18:05 -0000 1.13.2.1 @@ -24,4 +24,12 @@ } expect { + "password:" { send "$vcs_password\r" } + eof { exit 0 } + } + expect { + "password:" { send "$vcs_password\r" } + eof { exit 0 } + } + expect { "denied" { exit 2 } eof { exit 0 } |