mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
588cc4c904
Changes since 2.2.8: - Fix crash related to FD_SET and socket timeout handling - Fix build_absolute_url when if_indextoname() returns NULL - Add support for C23 and glibc 2.43 string function signatures - Improve poll() usage and C++ compiler compatibility Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
21 lines
748 B
Diff
21 lines
748 B
Diff
--- a/src/upnpcommands.c
|
|
+++ b/src/upnpcommands.c
|
|
@@ -357,7 +357,7 @@ UPNP_AddPortMapping(const char * control
|
|
{"NewInternalPort", inPort},
|
|
{"NewInternalClient", inClient},
|
|
{"NewEnabled", "1"},
|
|
- {"NewPortMappingDescription", desc?desc:"libminiupnpc"},
|
|
+ {"NewPortMappingDescription", desc?desc:"miniupnpc"},
|
|
{"NewLeaseDuration", leaseDuration?leaseDuration:"0"},
|
|
{NULL, NULL}
|
|
};
|
|
@@ -411,7 +411,7 @@ UPNP_AddAnyPortMapping(const char * cont
|
|
{"NewInternalPort", inPort},
|
|
{"NewInternalClient", inClient},
|
|
{"NewEnabled", "1"},
|
|
- {"NewPortMappingDescription", desc?desc:"libminiupnpc"},
|
|
+ {"NewPortMappingDescription", desc?desc:"miniupnpc"},
|
|
{"NewLeaseDuration", leaseDuration?leaseDuration:"0"},
|
|
{NULL, NULL}
|
|
};
|