diff options
author | Haruna <haru@dotalux.com> | 2014-10-30 01:12:53 +0100 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2014-10-30 01:12:53 +0100 |
commit | cf8d24e602cce90d8f7c22e3d4a04aca4b66a3f3 (patch) | |
tree | 9e5c839cbee7b992dd3b0803019e3f61c5e0e7ec /src/map | |
parent | 534921cf6e8c2ca683ca7c940306c373cfb0ad2b (diff) | |
parent | 7603ea174c2d44cafee2b8aa833f80114c045500 (diff) | |
download | hercules-cf8d24e602cce90d8f7c22e3d4a04aca4b66a3f3.tar.gz hercules-cf8d24e602cce90d8f7c22e3d4a04aca4b66a3f3.tar.bz2 hercules-cf8d24e602cce90d8f7c22e3d4a04aca4b66a3f3.tar.xz hercules-cf8d24e602cce90d8f7c22e3d4a04aca4b66a3f3.zip |
Merge pull request #369 from 4144/sqlpasswordsize
Increase sql password field size from 32 to 100 chars.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/log.h | 2 | ||||
-rw-r--r-- | src/map/map.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/map/log.h b/src/map/log.h index 6ab142f87..40dbf6761 100644 --- a/src/map/log.h +++ b/src/map/log.h @@ -98,7 +98,7 @@ struct log_interface { char db_ip[32]; int db_port; char db_id[32]; - char db_pw[32]; + char db_pw[100]; char db_name[32]; Sql* mysql_handle; /* */ diff --git a/src/map/map.h b/src/map/map.h index 11dd6ce82..5468016b4 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -850,7 +850,7 @@ struct map_interface { int server_port; char server_ip[32]; char server_id[32]; - char server_pw[32]; + char server_pw[100]; char server_db[32]; Sql* mysql_handle; |