diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/common/cbasetypes.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index b1397a978..3ac378a1e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/05/29 + * Hopefully fixed the vsnprintf incompatibility 2007/05/28 * Fixed an infinite char-server loop on the map connection [ultramage] * RFIFOREST returns 0 when the session is eof (input data is implicitly diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index 56bbb3235..bfced3441 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -185,6 +185,9 @@ typedef unsigned long long uint64; #define strncasecmp strnicmp #define strncmpi strnicmp #define snprintf _snprintf +#if defined(_MSC_VER) && _MSC_VER < 1400 +#define vsnprintf _vsnprintf +#endif #else #define strcmpi strcasecmp #define stricmp strcasecmp |