Tools: Show only filenames when fuzzing.

Show only the basename of each capture file when fuzzing, which is less
noisy than the full pathname.
This commit is contained in:
Gerald Combs 2021-05-07 14:21:09 -07:00
parent 7c6df3848f
commit 4266e1e9ba
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ while { [ $PASS -lt "$MAX_PASSES" ] || [ "$MAX_PASSES" -lt 1 ]; } && ! $DONE ; d
if [ "$OSTYPE" == "cygwin" ] ; then
CF=$( cygpath --windows "$CF" )
fi
echo -n " $CF: "
printf " %s: " "$( basename "$CF" )"
"$CAPINFOS" "$CF" > /dev/null 2> "$TMP_DIR/$ERR_FILE"
RETVAL=$?