From 31be44ca61aa16cfdc33ba105a164c9f24a840fc Mon Sep 17 00:00:00 2001 From: "Jonathan G. Underwood" Date: Sat, 27 Jun 2020 16:43:53 +0100 Subject: [PATCH] stubby: fix handling of tls_port config option Signed-off-by: Jonathan G. Underwood --- net/stubby/Makefile | 2 +- net/stubby/files/stubby.init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/stubby/Makefile b/net/stubby/Makefile index d8e59098e..406624838 100644 --- a/net/stubby/Makefile +++ b/net/stubby/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=stubby PKG_VERSION:=0.2.6 -PKG_RELEASE:=4 +PKG_RELEASE:=5 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 ebc357bbd..d08997caf 100755 --- a/net/stubby/files/stubby.init +++ b/net/stubby/files/stubby.init @@ -162,7 +162,7 @@ generate_config() config_get tls_auth_name "$config" tls_auth_name echo " tls_auth_name: \"$tls_auth_name\"" - config_get tls_auth_port "$config" tls_port "" + config_get tls_port "$config" tls_port "" if [ -n "$tls_port" ]; then echo " tls_port: $tls_port" fi