From: Jonathan Bennett Date: Mon, 16 Oct 2017 03:12:18 +0000 (-0500) Subject: luci-app-fwknopd: Prep for libqrencode update X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=e52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2;ds=sidebyside 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 --- 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"