aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-04-24 00:37:08 +0000
committerGerald Combs <gerald@wireshark.org>2005-04-24 00:37:08 +0000
commit103103e21cb4b027b1dc16b75e3cdd4bc2dd93c4 (patch)
treea8a423f0a070d27b32c4c62696494796bbb38951 /tools
parent522e204d87587aa0382eb6e7828053c9b296a59e (diff)
Fix a quoting bug.
svn path=/trunk/; revision=14177
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fuzz-test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/fuzz-test.sh b/tools/fuzz-test.sh
index f60e652bd1..ee5211e2fe 100755
--- a/tools/fuzz-test.sh
+++ b/tools/fuzz-test.sh
@@ -32,7 +32,7 @@ ulimit -S -t $MAX_CPU_TIME -v $MAX_VMEM
# Make sure we have a valid test set
FOUND=0
for CF in "$@" ; do
- $CAPINFOS $CF > /dev/null 2>&1 && FOUND=1
+ $CAPINFOS "$CF" > /dev/null 2>&1 && FOUND=1
if [ $FOUND -eq 1 ] ; then break ; fi
done
@@ -57,7 +57,7 @@ while [ 1 ] ; do
for CF in "$@" ; do
echo -n " $CF: "
- $CAPINFOS $CF > /dev/null 2>&1
+ $CAPINFOS "$CF" > /dev/null 2>&1
if [ $? -ne 0 ] ; then
echo "Not a valid capture file"
continue