Remove debug output from try_harder()
This commit is contained in:
parent
649b55d988
commit
37c128580a
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue