Files
packages/net/miniupnpc/patches/200-miniupnpc_desc.patch
T
Alexandru Ardelean 588cc4c904 miniupnpc: update to 2.3.3
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>
2026-05-14 15:39:33 +03:00

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}
};