* lib/lib.t: Call kinit and kdestroy with -5 flag to accomodate
authorTom Yu <tlyu@mit.edu>
Tue, 8 Feb 2000 00:09:43 +0000 (00:09 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 8 Feb 2000 00:09:43 +0000 (00:09 +0000)
new behavior.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12022 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kadm5/unit-test/ChangeLog
src/lib/kadm5/unit-test/lib/lib.t

index e65978aa7ccca983e83a4fc822fd8ddec00942fb..f8eb89a4e74cb85fadc8356b7260de4ae8458e5a 100644 (file)
@@ -1,3 +1,8 @@
+2000-02-07  Tom Yu  <tlyu@mit.edu>
+
+       * lib/lib.t: Call kinit and kdestroy with -5 flag to accomodate
+       new behavior.
+
 1999-10-26  Tom Yu  <tlyu@mit.edu>
 
        * Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
index a8b6ca670cd3dece7daf2d4a9d5826da60e91640..ad3e22ceece828ab7202021d47b4665ae9ba8bd8 100644 (file)
@@ -235,7 +235,7 @@ proc kinit { princ pass {opts ""} } {
        global env;
         global KINIT
 
-       eval spawn $KINIT $opts $princ
+       eval spawn $KINIT -5 $opts $princ
        expect {
                -re {Password for .*: $}
                    {send "$pass\n"}
@@ -262,7 +262,7 @@ proc kdestroy {} {
        if {[info exists errorInfo]} {
                set saveErrorInfo $errorInfo
        }
-       catch "system $KDESTROY 2>/dev/null"
+       catch "system $KDESTROY -5 2>/dev/null"
        if {[info exists saveErrorCode]} {
                set errorCode $saveErrorCode
        } elseif {[info exists errorCode]} {