diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/login_sql/login.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 9259faac0..d2e624607 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ 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. 2007/04/29 + * Fixed login_sql ipbans not working * login server will now bind only after finishing the init phase * Tried and fixed md5 password encryption [ultramage] - login_sql was doing stupid things like re-using one pre-generated diff --git a/src/login_sql/login.c b/src/login_sql/login.c index d2cbb60ee..b8e57544a 100644 --- a/src/login_sql/login.c +++ b/src/login_sql/login.c @@ -1260,7 +1260,7 @@ int lan_subnetcheck(uint32 ip) int login_ip_ban_check(uint32 ip) { - char* p = (char*)&ip; + uint8* p = (uint8*)&ip; sprintf(tmpsql, "SELECT count(*) FROM `ipbanlist` WHERE `list` = '%d.*.*.*' OR `list` = '%d.%d.*.*' OR `list` = '%d.%d.%d.*' OR `list` = '%d.%d.%d.%d'", p[3], p[3], p[2], p[3], p[2], p[1], p[3], p[2], p[1], p[0]); if (mysql_query(&mysql_handle, tmpsql)) { |