From 4f462b3d09e661d64714187636ddb851457c1c39 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Tue, 5 Apr 2011 19:21:16 +0000 Subject: [PATCH] foo="\windows\style\pathname"; printf "$foo" isn't going to work too well in the general case ... svn path=/trunk/; revision=36479 --- tools/list_protos_in_cap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/list_protos_in_cap.sh b/tools/list_protos_in_cap.sh index e831caeb77..609b56f412 100755 --- a/tools/list_protos_in_cap.sh +++ b/tools/list_protos_in_cap.sh @@ -77,7 +77,7 @@ for CF in "$@" ; do continue fi - printf "$CF " + printf "%s: " "$CF" # Extract the protocol names. $TSHARK -T fields -eframe.protocols -nr "$CF" 2>/dev/null | tr ':\r' '\n' \