Tools: Show only filenames when fuzzing.

Show only the basename of each capture file when fuzzing, which is less
noisy than the full pathname.


(cherry picked from commit 4266e1e9ba)
This commit is contained in:
Gerald Combs 2021-05-07 14:21:09 -07:00
parent 0d8be1fb79
commit e6eb1d7370
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,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=$?