From 2139c44cc41dcffac4be250518d10f1bbba2276f Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Tue, 24 Apr 2012 00:51:48 +0200 Subject: [PATCH] fix typo : FirewallDisabed => FirewallDisabled --- miniupnpd/upnpsoap.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/miniupnpd/upnpsoap.c b/miniupnpd/upnpsoap.c index b4125c8..56df1ff 100644 --- a/miniupnpd/upnpsoap.c +++ b/miniupnpd/upnpsoap.c @@ -1133,7 +1133,7 @@ CheckStatus(struct upnphttp * h) { if (!ipv6fc_firewall_enabled) { - SoapError(h, 702, "FirewallDisabed"); + SoapError(h, 702, "FirewallDisabled"); return 0; } else if(!ipv6fc_inbound_pinhole_allowed) @@ -1385,9 +1385,7 @@ AddPinhole(struct upnphttp * h, const char * action) } if(PinholeVerification(h, int_ip, iport) <= 0) - { goto clear_and_exit; - } syslog(LOG_INFO, "%s: (inbound) from [%s]:%hu to [%s]:%hu with proto %ld during %d sec", action, rem_host?rem_host:"any", @@ -1512,7 +1510,7 @@ GetOutboundPinholeTimeout(struct upnphttp * h, const char * action) if (!ipv6fc_firewall_enabled) { - SoapError(h, 702, "FirewallDisabed"); + SoapError(h, 702, "FirewallDisabled"); return; }