diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-08-01 08:02:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-01 08:02:18 +0200 |
commit | d0bac09ae514d6f0c3227d9e367411ee9266540a (patch) | |
tree | 9188ad500470ef3386f4cbf1d7b362bddc6c0237 /net | |
parent | 7c21db5fbcbf6e60f40224fb7f2552cbb3fd9155 (diff) | |
parent | 3113d62393fcd364a402aae55139eba4bf38fab8 (diff) |
Merge pull request #6531 from jow-/privoxy-fix-uci-parsing
privoxy: fix uci configuration parsing after upstream OpenWrt changes
Diffstat (limited to 'net')
-rw-r--r-- | net/privoxy/Makefile | 2 | ||||
-rw-r--r-- | net/privoxy/files/privoxy.init | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/net/privoxy/Makefile b/net/privoxy/Makefile index b71251d07..605d09922 100644 --- a/net/privoxy/Makefile +++ b/net/privoxy/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=privoxy PKG_VERSION:=3.0.26 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=privoxy-$(PKG_VERSION)-stable-src.tar.gz PKG_SOURCE_URL:=@SF/ijbswa diff --git a/net/privoxy/files/privoxy.init b/net/privoxy/files/privoxy.init index b2592b35a..d9c92fb7d 100644 --- a/net/privoxy/files/privoxy.init +++ b/net/privoxy/files/privoxy.init @@ -40,6 +40,11 @@ _uci2conf() { ;; esac } + + list_cb() + { + option_cb "$@" + } fi } |