diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/login_sql/login.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 061fefb29..40bce573e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,7 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/05/31
* [Fixed]:
+ - Missing #include for cbasetypes.h in login server SQL.
- Logic errors in run_script [Lance]
* [Added]:
- Partial support for latest login packet. But it seems to have a new security
diff --git a/src/login_sql/login.c b/src/login_sql/login.c index cc651a30b..6451c494f 100644 --- a/src/login_sql/login.c +++ b/src/login_sql/login.c @@ -53,6 +53,7 @@ void Gettimeofday(struct timeval *timenow) #include "../common/mmo.h"
#include "../common/showmsg.h"
#include "../common/version.h"
+#include "../common/cbasetypes.h"
#include "login.h"
#ifdef PASSWORDENC
|