summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJonathan Bennett <JBennett@incomsystems.biz>2017-10-16 12:29:31 -0500
committerJonathan Bennett <JBennett@incomsystems.biz>2017-10-16 12:29:31 -0500
commitcfbeca728ef8fc6e450010d434fcac6a4d5f2b19 (patch)
treea00801dd4c99684245f9ddafefe1a9900a6f99ef
parent19f30d07cce1a609f14b91a1f0d4caa110d5aa42 (diff)
luci-app-fwknop: add inline option to qrencode usage
The qrencode update in the packages repo includes a patch that adds the --inline option. We use that option to generate a proper inline SVG image. Signed-off-by: Jonathan Bennett <JBennett@Incomsystems.biz>
-rw-r--r--applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh2
1 files changed, 1 insertions, 1 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 cfd71525c..48850bd36 100644
--- a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
+++ b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
@@ -23,4 +23,4 @@ if [ "$hmac_key" != "" ]; then
qr="$qr HMAC_KEY:$hmac_key"
fi
-qrencode -t svg -o - "$qr"
+qrencode -t svg -I -o - "$qr"