Parcourir la source

[2246] Solaris compilation fix

Tomek Mrugalski il y a 11 ans
Parent
commit
e5ee6e7893
1 fichiers modifiés avec 5 ajouts et 2 suppressions
  1. 5 2
      src/lib/dhcp/iface_mgr_sun.cc

+ 5 - 2
src/lib/dhcp/iface_mgr_sun.cc

@@ -60,7 +60,8 @@ IfaceMgr::detectIfaces() {
             isc_throw(Unexpected, "Interface " << ifname << " has no index");
         }
 
-        if((iface_iter = ifaces.find(ifname)) != iface.end()) {
+        iface_iter = ifaces.find(ifname);
+        if(iface_iter != ifaceLst.end()) {
             continue;
         }
 
@@ -71,7 +72,9 @@ IfaceMgr::detectIfaces() {
 
     // Second lookup to get MAC and IP addresses
     for (ifptr = iflist; ifptr != 0; ifptr = ifptr->ifa_next) {
-        if ((itf = ifaces.find(ifptr->ifa_name)) == ifaces.end()) {
+
+        iface_iter = ifaces.find(ifptr->ifa_name);
+        if (iface_iter == ifaces.end()) {
             continue;
         }
         // Common byte pointer for following data