diff options
-rw-r--r-- | src/tests/dejagnu/config/ChangeLog | 5 | ||||
-rw-r--r-- | src/tests/dejagnu/config/default.exp | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/tests/dejagnu/config/ChangeLog b/src/tests/dejagnu/config/ChangeLog index 08098d53bb..3256cb3346 100644 --- a/src/tests/dejagnu/config/ChangeLog +++ b/src/tests/dejagnu/config/ChangeLog @@ -1,3 +1,8 @@ +2000-11-08 Tom Yu <tlyu@mit.edu> + + * default.exp: Use $KRBIV rather than $KRB4 since dejagnu-1.3 + doesn't deal with digits in passed-in variables. + Thu Oct 12 12:06:03 2000 Ezra Peisach <epeisach@mit.edu> * default.exp: Add dict_file entry (and create one) for kdc.conf diff --git a/src/tests/dejagnu/config/default.exp b/src/tests/dejagnu/config/default.exp index 8e534d1cda..6d8a90f495 100644 --- a/src/tests/dejagnu/config/default.exp +++ b/src/tests/dejagnu/config/default.exp @@ -1334,13 +1334,13 @@ proc kinit { name pass standalone } { # Returns 1 if v4 testing is enabled this passes encryption types are compatable with kerberos 4 work proc v4_compatible_enctype {} { global supported_enctypes - global KRB4 + global KRBIV - if ![info exists KRB4] { + if ![info exists KRBIV] { return 0; } - if { $KRB4 && [string first des-cbc-crc:v4 "$supported_enctypes"] >= 0} { + if { $KRBIV && [string first des-cbc-crc:v4 "$supported_enctypes"] >= 0} { return 1 } else { return 0 |