mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 09:12:05 -04:00
Missing type in internal_next6() function declaration
This commit is contained in:
parent
ba5af4569a
commit
4fcd03af9f
1 changed files with 2 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: interfaceiter.c,v 1.12 2008/04/02 23:46:57 tbox Exp $ */
|
||||
/* $Id: interfaceiter.c,v 1.13 2008/04/18 19:47:48 each Exp $ */
|
||||
|
||||
/*
|
||||
* Note that this code will need to be revisited to support IPv6 Interfaces.
|
||||
|
|
@ -429,6 +429,7 @@ internal_next(isc_interfaceiter_t *iter) {
|
|||
return (ISC_R_SUCCESS);
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
internal_next6(isc_interfaceiter_t *iter) {
|
||||
if (iter->pos6 == 0)
|
||||
return (ISC_R_NOMORE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue