tools: $valgrind --> "$valgrind"

String cmp missing quotes

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
Quentin Young 2017-05-12 23:29:58 +00:00
parent c5221d2f48
commit 61de994bcf

View File

@ -150,11 +150,11 @@ start()
return; return;
fi fi
if [ $valgrind_enable = "yes" ]; then if [ "$valgrind_enable" = "yes" ]; then
${SSD} \ ${SSD} \
--start \ --start \
--pidfile=`pidfile $1` \ --pidfile=`pidfile $1` \
--exec $valgrind \ --exec "$valgrind" \
-- --trace-children=no --leak-check=full --log-file=/var/log/frr/$1-valgrind.log $D_PATH/$1 \ -- --trace-children=no --leak-check=full --log-file=/var/log/frr/$1-valgrind.log $D_PATH/$1 \
`eval echo "$""$1""_options"` `eval echo "$""$1""_options"`
else else