- Lots of little stuff modified
[tinc] / src / netutl.c
index 0a0a3fe..ff6114c 100644 (file)
@@ -16,7 +16,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: netutl.c,v 1.12.4.11 2000/10/11 10:35:17 guus Exp $
+    $Id: netutl.c,v 1.12.4.13 2000/10/24 15:46:17 guus Exp $
 */
 
 #include "config.h"
@@ -73,7 +73,7 @@ cp
   in.s_addr = addr;
 
   lookup_hostname = 0;
-  if((cfg = get_config_val(resolve_dns)) != NULL)
+  if((cfg = get_config_val(config, resolve_dns)) != NULL)
     if(cfg->data.val == stupid_true)
       lookup_hostname = 1;
 
@@ -125,7 +125,7 @@ cp
     }
 
   ip = xmalloc(sizeof(*ip));
-  ip->ip = ntohl(*((ip_t*)(h->h_addr_list[0])));
+  ip->address = ntohl(*((ip_t*)(h->h_addr_list[0])));
 
   ip->mask = masker ? ~((1 << (32 - masker)) - 1) : 0;
 cp