From: Dmitry Mikhirev Date: Thu, 23 Dec 2021 22:31:43 +0000 (+0400) Subject: stubby: quote address value in config X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=bdd264b8909942271763c3a947a8e0f6f492ae5c;p=openwrt-packages.git stubby: quote address value in config fixes #17421 Signed-off-by: Dmitry Mikhirev --- diff --git a/net/stubby/Makefile b/net/stubby/Makefile index 79d5ebc6c..6fc347c23 100644 --- a/net/stubby/Makefile +++ b/net/stubby/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=stubby PKG_VERSION:=0.4.0 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/getdnsapi/$(PKG_NAME) diff --git a/net/stubby/files/stubby.init b/net/stubby/files/stubby.init index 26cf170ed..5d0574aed 100755 --- a/net/stubby/files/stubby.init +++ b/net/stubby/files/stubby.init @@ -157,7 +157,7 @@ generate_config() upstream_recursive_servers_section=1 fi config_get address "$config" address - echo " - address_data: $address" + echo " - address_data: \"$address\"" config_get tls_auth_name "$config" tls_auth_name echo " tls_auth_name: \"$tls_auth_name\""