Merge pull request #5466 from danielg4/master
unbound: fix crash when using odhcpd w/o dnsmasq
This commit is contained in:
commit
3e62173de5
2 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=unbound
|
PKG_NAME:=unbound
|
||||||
PKG_VERSION:=1.6.7
|
PKG_VERSION:=1.6.7
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
|
|
||||||
while ( ( cmd | getline adr ) > 0 ) {
|
while ( ( cmd | getline adr ) > 0 ) {
|
||||||
if (( substr( adr, 1, 5 ) <= "fd00:" ) \
|
if (( substr( adr, 1, 5 ) <= "fd00:" ) \
|
||||||
|
&& ( index( adr, "anycast" ) == 0 ) \
|
||||||
&& ( index( adr, "via" ) == 0 )) {
|
&& ( index( adr, "via" ) == 0 )) {
|
||||||
# GA or ULA routed addresses only (not LL or MC)
|
# GA or ULA routed addresses only (not LL or MC)
|
||||||
sub( /\/.*/, "", adr ) ;
|
sub( /\/.*/, "", adr ) ;
|
||||||
|
|
Loading…
Reference in a new issue