From 5eb5527b1eaec0955a91f8532424bb45611b7b0c Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Tue, 5 Oct 2010 14:28:51 +0100 Subject: [PATCH] trace: Don't strip lines containing '#' arbitrarily Although comment lines must be skipped, the '#' character can occur in valid format strings. Be more careful when checking for comments. Leave comments at the end of the line where they will not interfere with other processing. Signed-off-by: Stefan Hajnoczi Signed-off-by: Blue Swirl --- tracetool | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tracetool b/tracetool index 534cc70..63e3e29 100755 --- a/tracetool +++ b/tracetool @@ -318,8 +318,7 @@ convert() while read -r str; do # Skip comments and empty lines - str=${str%%#*} - test -z "$str" && continue + test -z "${str%%#*}" && continue # Process the line. The nop backend handles disabled lines. disable=${str%%disable *} -- 2.7.4