spawn_id in check_exit_status, rather than the global value.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21289
dc483132-0cff-0310-8789-
dd5450dbe970
}
# check_exit_status
-# Check the exit status of a spawned program. Returns 1 if the
-# program succeeded, 0 if it failed.
+# Check the exit status of a spawned program (using the caller's value
+# of spawn_id). Returns 1 if the program succeeded, 0 if it failed.
proc check_exit_status { testname } {
- global spawn_id
+ upvar 1 spawn_id spawn_id
verbose "about to wait ($testname)"
set status_list [wait -i $spawn_id]