Luci-app-fwknopd: add quotation marks to squash error
authorJonathan Bennett <jbennett@incomsystems.biz>
Mon, 16 Oct 2017 02:33:15 +0000 (21:33 -0500)
committerGitHub <noreply@github.com>
Mon, 16 Oct 2017 02:33:15 +0000 (21:33 -0500)
In some cases, the missing quotation marks can cause error messages.  Although harmless, adding the quotation marks for correctness.

Signed-off-by: Jonathan Bennett <JBennett@Incomsystems.biz>
applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh

index abca5d3..7825f05 100644 (file)
@@ -9,17 +9,17 @@ key=$(uci get fwknopd.@access[$entry_num].KEY)
 hmac_key_base64=$(uci get fwknopd.@access[$entry_num].HMAC_KEY_BASE64)
 hmac_key=$(uci get fwknopd.@access[$entry_num].HMAC_KEY)
 
 hmac_key_base64=$(uci get fwknopd.@access[$entry_num].HMAC_KEY_BASE64)
 hmac_key=$(uci get fwknopd.@access[$entry_num].HMAC_KEY)
 
-if [ $key_base64 != "" ]; then
+if [ "$key_base64" != "" ]; then
 qr="KEY_BASE64:$key_base64"
 fi
 qr="KEY_BASE64:$key_base64"
 fi
-if [ $key != "" ]; then
+if [ "$key" != "" ]; then
 qr="$qr KEY:$key"
 
 fi
 qr="$qr KEY:$key"
 
 fi
-if [ $hmac_key_base64 != "" ]; then
+if [ "$hmac_key_base64" != "" ]; then
 qr="$qr HMAC_KEY_BASE64:$hmac_key_base64"
 fi
 qr="$qr HMAC_KEY_BASE64:$hmac_key_base64"
 fi
-if [ $hmac_key != "" ]; then
+if [ "$hmac_key" != "" ]; then
 qr="$qr HMAC_KEY:$hmac_key"
 fi
 
 qr="$qr HMAC_KEY:$hmac_key"
 fi