In execute_script:
[tinc] / src / netutl.c
index 5f62770..b80473b 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.12 2000/10/11 22:01:00 guus Exp $
+    $Id: netutl.c,v 1.12.4.14 2000/10/29 09:19:25 guus Exp $
 */
 
 #include "config.h"
@@ -35,7 +35,6 @@
 
 #include "errno.h"
 #include "conf.h"
-#include "encr.h"
 #include "net.h"
 #include "netutl.h"
 
@@ -125,7 +124,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