mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 00:20:00 -04:00
1611. [bug] solaris: IPv6 interface scanning failed to cope with
no active IPv6 interfaces.
This commit is contained in:
parent
c2ec022f57
commit
b4fe7caac9
2 changed files with 5 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,4 +1,5 @@
|
|||
1611. [placeholder] rt11065
|
||||
1611. [bug] solaris: IPv6 interface scanning failed to cope with
|
||||
no active IPv6 interfaces.
|
||||
|
||||
1610. [bug] On dual stack machines "dig -b" failed to set the
|
||||
address type to be looked up with "@server".
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: ifiter_ioctl.c,v 1.44 2004/03/05 05:11:45 marka Exp $ */
|
||||
/* $Id: ifiter_ioctl.c,v 1.45 2004/04/15 07:02:06 marka Exp $ */
|
||||
|
||||
/*
|
||||
* Obtain the list of network interfaces using the SIOCGLIFCONF ioctl.
|
||||
|
|
@ -267,7 +267,8 @@ getbuf6(isc_interfaceiter_t *iter) {
|
|||
iter->bufsize6 *= 2;
|
||||
}
|
||||
|
||||
iter->mode = 6;
|
||||
if (iter->lifc.lifc_len != 0)
|
||||
iter->mode = 6;
|
||||
return (ISC_R_SUCCESS);
|
||||
|
||||
cleanup:
|
||||
|
|
|
|||
Loading…
Reference in a new issue