diff options
author | shennetsind <ind@henn.et> | 2013-06-08 17:31:28 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-06-08 17:31:28 -0300 |
commit | 4c31ec091c3dcef916c90b6416976ea701671e90 (patch) | |
tree | 421552306c5f014103c6f8efc261e947bbb448c5 /src/login | |
parent | 60eb0c9e0527e80b7793e48d2cea47e3204b777c (diff) | |
download | hercules-4c31ec091c3dcef916c90b6416976ea701671e90.tar.gz hercules-4c31ec091c3dcef916c90b6416976ea701671e90.tar.bz2 hercules-4c31ec091c3dcef916c90b6416976ea701671e90.tar.xz hercules-4c31ec091c3dcef916c90b6416976ea701671e90.zip |
Follow up d73783f22b2bb881aab74524d153d89a5932a199
Adjusting db.c interface name to adhere with the rest (pretty much we try to make it as short as we can, and being there were no conflicts we saw no reason to maintain the 'i')
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/login.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/login/login.c b/src/login/login.c index 159d99fee..e8f136ba9 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -109,7 +109,7 @@ static DBData create_online_user(DBKey key, va_list args) p->account_id = key.i; p->char_server = -1; p->waiting_disconnect = INVALID_TIMER; - return iDB->ptr2data(p); + return DB->ptr2data(p); } struct online_login_data* add_online_user(int char_server, int account_id) @@ -154,7 +154,7 @@ static int waiting_disconnect_timer(int tid, unsigned int tick, int id, intptr_t */ static int online_db_setoffline(DBKey key, DBData *data, va_list ap) { - struct online_login_data* p = iDB->data2ptr(data); + struct online_login_data* p = DB->data2ptr(data); int server = va_arg(ap, int); if( server == -1 ) { @@ -175,7 +175,7 @@ static int online_db_setoffline(DBKey key, DBData *data, va_list ap) */ static int online_data_cleanup_sub(DBKey key, DBData *data, va_list ap) { - struct online_login_data *character= iDB->data2ptr(data); + struct online_login_data *character= DB->data2ptr(data); if (character->char_server == -2) //Unknown server.. set them offline remove_online_user(character->account_id); return 0; |