X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnetutl.c;h=b80473b1f091ce8ade254c127ffb266dc83873d4;hp=0a0a3fed1f5b01eb4c4d739640d648851853c9ca;hb=15246df85d6171c92478541a835effb96d6085c4;hpb=950fb8e916b0e248dcaa72c96859acd6046683aa diff --git a/src/netutl.c b/src/netutl.c index 0a0a3fed..b80473b1 100644 --- a/src/netutl.c +++ b/src/netutl.c @@ -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.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" @@ -73,7 +72,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 +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