- Fix 1211: Fix can't enable interface-automatic if no IPv6 with

more helpful error message.


git-svn-id: file:///svn/unbound/trunk@3995 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2017-01-26 11:03:06 +00:00
parent 240a012bd8
commit 4c17395deb
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
26 January 2017: Wouter
- Fix 1211: Fix can't enable interface-automatic if no IPv6 with
more helpful error message.
20 January 2017: Wouter
- Increase MAX_MODULE to 16.

View file

@ -1007,7 +1007,7 @@ set_recvpktinfo(int s, int family)
}
# else
log_err("no IPV6_RECVPKTINFO and no IPV6_PKTINFO option, please "
"disable interface-automatic in config");
"disable interface-automatic or do-ip6 in config");
return 0;
# endif /* defined IPV6_RECVPKTINFO */
@ -1028,7 +1028,7 @@ set_recvpktinfo(int s, int family)
}
# else
log_err("no IP_SENDSRCADDR or IP_PKTINFO option, please disable "
"interface-automatic in config");
"interface-automatic or do-ip4 in config");
return 0;
# endif /* IP_PKTINFO */