Skip to content
Permalink
Browse files Browse the repository at this point in the history
fix error from commit 13585f1
  • Loading branch information
miniupnp committed Dec 18, 2018
1 parent cb8a02a commit 86030db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniupnpd/upnpsoap.c
Expand Up @@ -1850,7 +1850,7 @@ GetOutboundPinholeTimeout(struct upnphttp * h, const char * action, const char *
rem_port = GetValueFromNameValueList(&data, "RemotePort");
protocol = GetValueFromNameValueList(&data, "Protocol");

if (!int_port || !ext_port || !protocol)
if (!int_port || !rem_port || !protocol)
{
ClearNameValueList(&data);
SoapError(h, 402, "Invalid Args");
Expand Down

0 comments on commit 86030db

Please sign in to comment.