- Fixed the include in irc.c from strings.h to string.h, which fixes a bunch of compilation warnings here...

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5299 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-02-16 20:37:44 +00:00
parent dcd7d940b0
commit a56eb4b977
2 changed files with 3 additions and 1 deletions

View File

@ -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]

View File

@ -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"