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/char/inter.c | |
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/char/inter.c')
-rw-r--r-- | src/char/inter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/inter.c b/src/char/inter.c index f676b8716..df2920aa0 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -41,7 +41,7 @@ Sql* sql_handle = NULL; int char_server_port = 3306; char char_server_ip[32] = "127.0.0.1"; char char_server_id[32] = "ragnarok"; -char char_server_pw[32] = "ragnarok"; +char char_server_pw[100] = "ragnarok"; char char_server_db[32] = "ragnarok"; char default_codepage[32] = ""; //Feature by irmin. |