From 4153a13faa9a1f4e5524c309dbbbd5d4a0c98669 Mon Sep 17 00:00:00 2001 From: nathan <nathan> Date: Fri, 27 Jul 2007 16:48:52 +0000 Subject: [PATCH] b=12499 escaped quotes was wrong --- lustre/tests/test-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index a2257b7d12..701be5d08b 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -810,7 +810,7 @@ debugsave() { } debugrestore() { - [ -n "$DEBUGSAVE" ] && sysctl -w lnet.debug=\"$DEBUGSAVE\" + [ -n "$DEBUGSAVE" ] && sysctl -w lnet.debug="${DEBUGSAVE}" DEBUGSAVE="" } -- GitLab