summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-fwknopd/root
diff options
context:
space:
mode:
authorJonathan Bennett <jbennett@incomsystems.biz>2017-10-15 21:33:15 -0500
committerGitHub <noreply@github.com>2017-10-15 21:33:15 -0500
commit085fb17a11c3f955962c143ba4e501c825305b04 (patch)
treed08901ea92940e0e0b8e7494bdfe64953a52bc0f /applications/luci-app-fwknopd/root
parenta47dd6ec057c1559c3a2effc41ae9dcc84856ebc (diff)
Luci-app-fwknopd: add quotation marks to squash error
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>
Diffstat (limited to 'applications/luci-app-fwknopd/root')
-rw-r--r--applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
index abca5d3e5..7825f05d2 100644
--- a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
+++ b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
@@ -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)
-if [ $key_base64 != "" ]; then
+if [ "$key_base64" != "" ]; then
qr="KEY_BASE64:$key_base64"
fi
-if [ $key != "" ]; then
+if [ "$key" != "" ]; then
qr="$qr KEY:$key"
fi
-if [ $hmac_key_base64 != "" ]; then
+if [ "$hmac_key_base64" != "" ]; then
qr="$qr HMAC_KEY_BASE64:$hmac_key_base64"
fi
-if [ $hmac_key != "" ]; then
+if [ "$hmac_key" != "" ]; then
qr="$qr HMAC_KEY:$hmac_key"
fi