Correct defect in the handling of 'trace' and 'debug'

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2010-07-01 15:56:57 -07:00
parent 9ecddfd1ce
commit baafa10711
2 changed files with 12 additions and 2 deletions

View File

@ -94,7 +94,12 @@ run_it() {
#
# 4.4.8 or later -- no additional exports required
#
options='-'
if [ x$1 = xtrace -o x$1 = xdebug ]; then
options="$1 -"
shift;
else
options='-'
fi
[ -n "$g_noroutes" ] && options=${options}n
[ -n "$g_timestamp" ] && options=${options}t

View File

@ -92,7 +92,12 @@ run_it() {
#
# 4.4.8 or later -- no additional exports required
#
options='-'
if [ x$1 = xtrace -o x$1 = xdebug ]; then
options="$1 -"
shift;
else
options='-'
fi
[ -n "$g_noroutes" ] && options=${options}n
[ -n "$g_timestamp" ] && options=${options}t