diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/kadm5/unit-test/ChangeLog | 5 | ||||
-rw-r--r-- | src/lib/kadm5/unit-test/config/unix.exp | 6 | ||||
-rw-r--r-- | src/lib/rpc/unit-test/ChangeLog | 5 | ||||
-rw-r--r-- | src/lib/rpc/unit-test/config/unix.exp | 6 | ||||
-rw-r--r-- | src/tests/dejagnu/config/ChangeLog | 5 | ||||
-rw-r--r-- | src/tests/dejagnu/config/default.exp | 6 |
6 files changed, 24 insertions, 9 deletions
diff --git a/src/lib/kadm5/unit-test/ChangeLog b/src/lib/kadm5/unit-test/ChangeLog index 39aedf631f..85c048d02f 100644 --- a/src/lib/kadm5/unit-test/ChangeLog +++ b/src/lib/kadm5/unit-test/ChangeLog @@ -1,3 +1,8 @@ +2004-02-13 Tom Yu <tlyu@mit.edu> + + * config/unix.exp (PRIOCNTL_HACK): Use "==" instead of "eq", which + is not present in tcl-8.3. + 2004-02-12 Tom Yu <tlyu@mit.edu> * config/unix.exp (PRIOCNTL_HACK): Wrap "spawn" to do priocntl diff --git a/src/lib/kadm5/unit-test/config/unix.exp b/src/lib/kadm5/unit-test/config/unix.exp index efc07693f2..a78515f915 100644 --- a/src/lib/kadm5/unit-test/config/unix.exp +++ b/src/lib/kadm5/unit-test/config/unix.exp @@ -25,9 +25,9 @@ if { $PRIOCNTL_HACK } { set inflags 1 set eatnext 0 foreach arg $args { - if { $arg eq "-ignore" || - $arg eq "-open" || - $arg eq "-leaveopen" } { + if { $arg == "-ignore" \ + || $arg == "-open" \ + || $arg == "-leaveopen" } { lappend newargs $arg set eatnext 1 continue diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog index c87dade474..03c929c819 100644 --- a/src/lib/rpc/unit-test/ChangeLog +++ b/src/lib/rpc/unit-test/ChangeLog @@ -1,3 +1,8 @@ +2004-02-13 Tom Yu <tlyu@mit.edu> + + * config/unix.exp (PRIOCNTL_HACK): Use "==" instead of "eq", which + is not present in tcl-8.3. + 2004-02-12 Tom Yu <tlyu@mit.edu> * configure.in: Invoke KRB5_AC_PRIOCNTL_HACK. diff --git a/src/lib/rpc/unit-test/config/unix.exp b/src/lib/rpc/unit-test/config/unix.exp index 8b7df9f163..495472e672 100644 --- a/src/lib/rpc/unit-test/config/unix.exp +++ b/src/lib/rpc/unit-test/config/unix.exp @@ -20,9 +20,9 @@ if { $PRIOCNTL_HACK } { set inflags 1 set eatnext 0 foreach arg $args { - if { $arg eq "-ignore" || - $arg eq "-open" || - $arg eq "-leaveopen" } { + if { $arg == "-ignore" \ + || $arg == "-open" \ + || $arg == "-leaveopen" } { lappend newargs $arg set eatnext 1 continue diff --git a/src/tests/dejagnu/config/ChangeLog b/src/tests/dejagnu/config/ChangeLog index db49f55787..68af951e48 100644 --- a/src/tests/dejagnu/config/ChangeLog +++ b/src/tests/dejagnu/config/ChangeLog @@ -1,3 +1,8 @@ +2004-02-13 Tom Yu <tlyu@mit.edu> + + * default.exp (PRIOCNTL_HACK): Use "==" instead of "eq", which is + not present in tcl-8.3. + 2004-02-12 Tom Yu <tlyu@mit.edu> * default.exp (PRIOCNTL_HACK): Wrap "spawn" to do priocntl things diff --git a/src/tests/dejagnu/config/default.exp b/src/tests/dejagnu/config/default.exp index 68b551d69d..7e1cc23bf3 100644 --- a/src/tests/dejagnu/config/default.exp +++ b/src/tests/dejagnu/config/default.exp @@ -65,9 +65,9 @@ if { $PRIOCNTL_HACK } { set inflags 1 set eatnext 0 foreach arg $args { - if { $arg eq "-ignore" || - $arg eq "-open" || - $arg eq "-leaveopen" } { + if { $arg == "-ignore" \ + || $arg == "-open" \ + || $arg == "-leaveopen" } { lappend newargs $arg set eatnext 1 continue |