X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fedge.c;h=eb664d272f08c377fd8f7ac8ebf0a1fe08543ebe;hp=da1cdb45fe79209089d03a9a91204991d86f2905;hb=b5bb06200eda170c9836e1b4474d6f5b920c2151;hpb=3c5655f59e85d312d11fa04489123e604920f95b diff --git a/src/edge.c b/src/edge.c index da1cdb45..eb664d27 100644 --- a/src/edge.c +++ b/src/edge.c @@ -1,7 +1,7 @@ /* edge.c -- edge tree management - Copyright (C) 2000-2002 Guus Sliepen , - 2000-2002 Ivo Timmermans + Copyright (C) 2000-2002 Guus Sliepen , + 2000-2002 Ivo Timmermans This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: edge.c,v 1.1.2.9 2002/03/22 13:31:18 guus Exp $ + $Id: edge.c,v 1.1.2.11 2002/06/21 10:11:12 guus Exp $ */ #include "config.h" @@ -189,25 +189,20 @@ void dump_edges(void) { avl_node_t *node; edge_t *e; - char *from_tcp, *from_udp; - char *to_tcp, *to_udp; + char *from_udp, *to_udp; cp syslog(LOG_DEBUG, _("Edges:")); for(node = edge_tree->head; node; node = node->next) { e = (edge_t *)node->data; -// from_tcp = sockaddr2hostname(&e->from.tcpaddress); from_udp = sockaddr2hostname(&e->from.udpaddress); -// to_tcp = sockaddr2hostname(&e->to.tcpaddress); to_udp = sockaddr2hostname(&e->to.udpaddress); syslog(LOG_DEBUG, _(" %s at %s - %s at %s options %lx weight %d"), e->from.node->name, from_udp, e->to.node->name, to_udp, e->options, e->weight); -// free(from_tcp); free(from_udp); -// free(to_tcp); free(to_udp); }