]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
src/bin/grepc: Add missing quotes
authorAlejandro Colomar <alx@kernel.org>
Sun, 2 Nov 2025 15:44:18 +0000 (16:44 +0100)
committerAlejandro Colomar <alx@kernel.org>
Sun, 2 Nov 2025 20:04:49 +0000 (21:04 +0100)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
src/bin/grepc

index 205ffdbcbd091bec659a5ff34da4212d47e55f9a..50af53e25671f0c805c6ef10a629e1528b6d512d 100755 (executable)
@@ -145,7 +145,7 @@ shift $((OPTIND-1));
 if test $# -lt 1; then
        grepc_err "Missing identifier.";
 fi;
-identifier=$1;
+identifier="$1";
 shift;
 
 if test -z "$x"; then