Remove debug output from try_harder()

This commit is contained in:
thorkill 2016-05-25 20:29:13 +02:00
parent 649b55d988
commit 37c128580a

View file

@ -1401,12 +1401,8 @@ static node_t *try_harder(const sockaddr_t *from, const vpn_packet_t *pkt) {
hard = true;
}
if(!try_mac(n, pkt)) {
char *hostname = sockaddr2hostname(from);
logger(DEBUG_ALWAYS, LOG_ERR, "try_mac(): from %s for %s failed - previous log messages may be misleading", hostname, n->name);
free(hostname);
if(!try_mac(n, pkt))
continue;
}
match = n;
break;