summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-05-29 09:00:02 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-05-29 09:00:02 +0000
commit9f7340804176b8edef40eeb128a223a646bcd7dc (patch)
tree9093664f9c90ca04966f0f0f2c99f090150e1b8a
parentd56f95e8ae32e01533dc0107469a87414f89d248 (diff)
downloadhercules-9f7340804176b8edef40eeb128a223a646bcd7dc.tar.gz
hercules-9f7340804176b8edef40eeb128a223a646bcd7dc.tar.bz2
hercules-9f7340804176b8edef40eeb128a223a646bcd7dc.tar.xz
hercules-9f7340804176b8edef40eeb128a223a646bcd7dc.zip
Hopefully fixed the vsnprintf incompatibility
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10645 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/common/cbasetypes.h3
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