Bug fix of last commit

_snprintf was wrongly defined in ssdp_server.c
This commit is contained in:
Fabrice Fontaine
2012-03-09 16:13:05 +01:00
parent e722d8c375
commit e95b4cc53a
2 changed files with 7 additions and 0 deletions

View File

@@ -2,6 +2,12 @@
Version 1.6.16
*******************************************************************************
2012-03-08 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
Bug fix of last commit
_snprintf was wrongly defined in ssdp_server.c
2012-03-08 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
SF Bug Tracker id 3499781 - msvc doesn't have snprintf

View File

@@ -40,6 +40,7 @@
#ifndef WIN32
#include <sys/param.h>
#else
#define snprintf _snprintf
#endif /* WIN32 */