This commit is contained in:
Thomas Bernard 2016-12-01 12:14:10 +01:00
parent 3d9b606a88
commit cfa01c5c32
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ upnp_add_inboundpinhole(const char * raddr,
*uid = upnp_find_inboundpinhole(raddr, rport, iaddr, iport, proto, NULL, 0, NULL);
if(*uid >= 0) {
syslog(LOG_INFO, "Pinhole for inbound traffic from [%s]:%hu to [%s]:%hu with protocol %s found uid=%d. Updating it.", raddr, rport, iaddr, iport, protocol, *uid);
syslog(LOG_INFO, "Pinhole for inbound traffic from [%s]:%hu to [%s]:%hu with proto %d found uid=%d. Updating it.", raddr, rport, iaddr, iport, proto, *uid);
r = upnp_update_inboundpinhole(*uid, timestamp);
return (r >= 0) ? 1 : r;
}