From 82c4ee5baa70c26f3b1c23d91e9ed8d9d8f6e111 Mon Sep 17 00:00:00 2001 From: grev Date: Fri, 16 Nov 2007 12:38:23 +0000 Subject: [PATCH] b=12649 escape ";" on log message to protect interpretation by shell --- lustre/tests/test-framework.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index ba9fa74..007df6c 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -1168,6 +1168,7 @@ log() { MSG=${MSG//\'/\\\'} MSG=${MSG//\(/\\\(} MSG=${MSG//\)/\\\)} + MSG=${MSG//\;/\\\;} local NODES=$(nodes_list) for NODE in $NODES; do do_node $NODE $LCTL mark "$MSG" 2> /dev/null || true -- 1.8.3.1