]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1628. [bug] Typo in Compaq Trucluster support. [RT# 11264]
authorMark Andrews <marka@isc.org>
Thu, 6 May 2004 03:16:07 +0000 (03:16 +0000)
committerMark Andrews <marka@isc.org>
Thu, 6 May 2004 03:16:07 +0000 (03:16 +0000)
CHANGES
lib/isc/unix/ifiter_ioctl.c

diff --git a/CHANGES b/CHANGES
index f52be02cbed31e30fffbd4cb0b08edb8481516af..0c1b9a9bcad0811997fbedf962f16deafd6274b8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1628.  [bug]           Typo in Compaq Trucluster support. [RT# 11264]
+
 1627.  [bug]           win32: sockets were not being closed when the
                        last external reference was removed. [RT# 11179]
 
index b8fee5a62af7672440588410ca864a07b87de0d8..ef2850ad197a7f86ef30d06335cd7604a1c77d69 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: ifiter_ioctl.c,v 1.45 2004/04/15 07:02:06 marka Exp $ */
+/* $Id: ifiter_ioctl.c,v 1.46 2004/05/06 03:16:07 marka Exp $ */
 
 /*
  * Obtain the list of network interfaces using the SIOCGLIFCONF ioctl.
@@ -943,7 +943,7 @@ internal_next(isc_interfaceiter_t *iter) {
 #endif
 #ifdef HAVE_TRUCLUSTER
        if (!iter->clua_done) {
-               clua_result = clua_getaliasaddress(&intr->clua_sa,
+               clua_result = clua_getaliasaddress(&iter->clua_sa,
                                                   &iter->clua_context);
                if (clua_result != CLUA_SUCCESS)
                        iter->clua_done = ISC_TRUE;
@@ -983,7 +983,7 @@ void internal_first(isc_interfaceiter_t *iter) {
 #endif
 #ifdef HAVE_TRUCLUSTER
        iter->clua_context = 0;
-       clua_result = clua_getaliasaddress(&intr->clua_sa,
+       clua_result = clua_getaliasaddress(&iter->clua_sa,
                                           &iter->clua_context);
        iter->clua_done = ISC_TF(clua_result != CLUA_SUCCESS);
 #endif