* default.exp: Use $KRBIV rather than $KRB4 since dejagnu-1.3
authorTom Yu <tlyu@mit.edu>
Wed, 8 Nov 2000 23:18:39 +0000 (23:18 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 8 Nov 2000 23:18:39 +0000 (23:18 +0000)
doesn't deal with digits in passed-in variables.

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

src/tests/dejagnu/config/ChangeLog
src/tests/dejagnu/config/default.exp

index 08098d53bbf422d1df87287b014915eb1a9c7ca1..3256cb33466214b325d00ea6dfe48697d957bc3e 100644 (file)
@@ -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
index 8e534d1cdaac55ad68c5ac38b4b64c17d1a796e8..6d8a90f49550167848f7ac85439e145c358adc3b 100644 (file)
@@ -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