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.99rst.org/?a=commitdiff_plain;h=e52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2;p=openwrt-luci.git 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 7825f05d20..f525c2abd7 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"