summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJonathan Bennett <jbennett@incomsystems.biz>2017-10-15 22:12:18 -0500
committerGitHub <noreply@github.com>2017-10-15 22:12:18 -0500
commite52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2 (patch)
tree6d1dd7977aa95ca0cdcf669a3051a725f150c027 /applications
parent085fb17a11c3f955962c143ba4e501c825305b04 (diff)
luci-app-fwknopd: Prep for libqrencode update
An update for libqrencode requires that we explicitly ask for an SVG output. This continues to work properly with the old version. Making the change here before updating the libqrencode package. Signed-off-by: Jonathan Bennett <JBennett@Incomsystems.biz>
Diffstat (limited to 'applications')
-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 7825f05d2..f525c2abd 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 -o - "$qr"
+qrencode -t svg -o - "$qr"