mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 06:55:30 +00:00
1610. [bug] On dual stack machines "dig -b" failed to set the
address type to be looked up with "@server". [RT #11069]
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dig.c,v 1.189 2004/04/13 02:54:14 marka Exp $ */
|
||||
/* $Id: dig.c,v 1.190 2004/04/15 06:47:08 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
#include <stdlib.h>
|
||||
@@ -1147,11 +1147,13 @@ dash_option(char *option, char *next, dig_lookup_t **lookup,
|
||||
*hash = '\0';
|
||||
} else
|
||||
srcport = 0;
|
||||
if (have_ipv6 && inet_pton(AF_INET6, value, &in6) == 1)
|
||||
if (have_ipv6 && inet_pton(AF_INET6, value, &in6) == 1) {
|
||||
isc_sockaddr_fromin6(&bind_address, &in6, srcport);
|
||||
else if (have_ipv4 && inet_pton(AF_INET, value, &in4) == 1)
|
||||
isc_net_disableipv4();
|
||||
} else if (have_ipv4 && inet_pton(AF_INET, value, &in4) == 1) {
|
||||
isc_sockaddr_fromin(&bind_address, &in4, srcport);
|
||||
else {
|
||||
isc_net_disableipv6();
|
||||
} else {
|
||||
if (hash != NULL)
|
||||
*hash = '#';
|
||||
fatal("invalid address %s", value);
|
||||
|
Reference in New Issue
Block a user