fix typo : FirewallDisabed => FirewallDisabled

This commit is contained in:
Thomas Bernard 2012-04-24 00:51:48 +02:00
parent c8021cb841
commit 2139c44cc4
1 changed files with 2 additions and 4 deletions

View File

@ -1133,7 +1133,7 @@ CheckStatus(struct upnphttp * h)
{ {
if (!ipv6fc_firewall_enabled) if (!ipv6fc_firewall_enabled)
{ {
SoapError(h, 702, "FirewallDisabed"); SoapError(h, 702, "FirewallDisabled");
return 0; return 0;
} }
else if(!ipv6fc_inbound_pinhole_allowed) else if(!ipv6fc_inbound_pinhole_allowed)
@ -1385,9 +1385,7 @@ AddPinhole(struct upnphttp * h, const char * action)
} }
if(PinholeVerification(h, int_ip, iport) <= 0) if(PinholeVerification(h, int_ip, iport) <= 0)
{
goto clear_and_exit; goto clear_and_exit;
}
syslog(LOG_INFO, "%s: (inbound) from [%s]:%hu to [%s]:%hu with proto %ld during %d sec", syslog(LOG_INFO, "%s: (inbound) from [%s]:%hu to [%s]:%hu with proto %ld during %d sec",
action, rem_host?rem_host:"any", action, rem_host?rem_host:"any",
@ -1512,7 +1510,7 @@ GetOutboundPinholeTimeout(struct upnphttp * h, const char * action)
if (!ipv6fc_firewall_enabled) if (!ipv6fc_firewall_enabled)
{ {
SoapError(h, 702, "FirewallDisabed"); SoapError(h, 702, "FirewallDisabled");
return; return;
} }