Bug fix of last commit

_snprintf was wrongly defined in ssdp_server.c
(cherry picked from commit e95b4cc53aefc029679e9793910273c75034055b)
This commit is contained in:
Fabrice Fontaine 2012-03-09 16:13:05 +01:00 committed by Marcelo Roberto Jimenez
parent d19c0757dc
commit 10ad771410
2 changed files with 7 additions and 0 deletions

View File

@ -318,6 +318,12 @@ Version 1.8.0
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 */