summaryrefslogtreecommitdiffstats
path: root/src/lib/rpc/unit-test/config
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2004-02-13 20:52:40 +0000
committerTom Yu <tlyu@mit.edu>2004-02-13 20:52:40 +0000
commitd761253055c2710df9c351b03b03129fc95ed9f5 (patch)
tree642c076dec8f4098bf9eda79b9683643e10043a8 /src/lib/rpc/unit-test/config
parent65979a268ddea3d7b0ff170da5923a6a3c0255cb (diff)
downloadkrb5-d761253055c2710df9c351b03b03129fc95ed9f5.tar.gz
krb5-d761253055c2710df9c351b03b03129fc95ed9f5.tar.xz
krb5-d761253055c2710df9c351b03b03129fc95ed9f5.zip
Change PRIOCNTL_HACK code to use "==" rather than "eq", as "eq" is not
available in tcl-8.3. ticket: new target_version: 1.3.2 tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16071 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/rpc/unit-test/config')
-rw-r--r--src/lib/rpc/unit-test/config/unix.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/rpc/unit-test/config/unix.exp b/src/lib/rpc/unit-test/config/unix.exp
index 8b7df9f16..495472e67 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