From: Quentin Young Date: Fri, 12 May 2017 23:29:58 +0000 (+0000) Subject: tools: $valgrind --> "$valgrind" X-Git-Tag: reindent-master-before~173^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=61de994bcfa419f82bf455c4966c40e348d1c0eb;p=matthieu%2Ffrr.git tools: $valgrind --> "$valgrind" String cmp missing quotes Signed-off-by: Quentin Young --- diff --git a/tools/frr b/tools/frr index 6f00700e40..0bea3ee81d 100755 --- a/tools/frr +++ b/tools/frr @@ -150,11 +150,11 @@ start() return; fi - if [ $valgrind_enable = "yes" ]; then + if [ "$valgrind_enable" = "yes" ]; then ${SSD} \ --start \ --pidfile=`pidfile $1` \ - --exec $valgrind \ + --exec "$valgrind" \ -- --trace-children=no --leak-check=full --log-file=/var/log/frr/$1-valgrind.log $D_PATH/$1 \ `eval echo "$""$1""_options"` else