diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-12 23:29:58 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-12 23:29:58 +0000 |
| commit | 61de994bcfa419f82bf455c4966c40e348d1c0eb (patch) | |
| tree | 5ec43a50ac50d2440554088f7cf021b0fd63be02 | |
| parent | c5221d2f487554693cf9d11087373b0e6a752657 (diff) | |
tools: $valgrind --> "$valgrind"
String cmp missing quotes
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
| -rwxr-xr-x | tools/frr | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
