From cfa01c5c32c8739d6465800e3021853473ecfaae Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Thu, 1 Dec 2016 12:14:10 +0100 Subject: [PATCH] fix 1a6c57847a30ebcc947eafffd81bce2136217a9c --- miniupnpd/upnppinhole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniupnpd/upnppinhole.c b/miniupnpd/upnppinhole.c index 9d25977..75ecb77 100644 --- a/miniupnpd/upnppinhole.c +++ b/miniupnpd/upnppinhole.c @@ -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; }