Browse Source

Merge pull request #12627 from jonathanunderwood/stubby-fix-tls-port

stubby: fix handling of tls_port config option
lilik-openwrt-22.03
Rosen Penev 4 years ago
committed by GitHub
parent
commit
021737ca73
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      net/stubby/Makefile
  2. +1
    -1
      net/stubby/files/stubby.init

+ 1
- 1
net/stubby/Makefile View File

@ -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)


+ 1
- 1
net/stubby/files/stubby.init View File

@ -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


Loading…
Cancel
Save