diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/irc.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e38fb5886..92983c966 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EVERYTHING ELSE
GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/02/16
+ * Changed the include in irc.c from strings.h to string.h, which fixes a
+ bunch of compilation warnings here... [Skotlex]
* Updated the SQL login/char servers to let the mysql server grant the new
IDs for accounts/chars/pets/parties/guilds instead of them being handled by
the server. [Skotlex]
diff --git a/src/map/irc.c b/src/map/irc.c index ce05e4013..466adf745 100644 --- a/src/map/irc.c +++ b/src/map/irc.c @@ -6,7 +6,7 @@ #include <netdb.h>
#include <unistd.h>
#include <ctype.h>
-#include <strings.h>
+#include <string.h>
#include "../common/core.h"
#include "../common/socket.h"
|