diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/login/account_sql.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/login/account_sql.c b/src/login/account_sql.c index 9bd5e292e..40b87829c 100644 --- a/src/login/account_sql.c +++ b/src/login/account_sql.c @@ -518,7 +518,6 @@ static bool mmo_auth_tosql(AccountDB_SQL* db, const struct mmo_account* acc, boo } else {// update account table - stmt = SqlStmt_Malloc(sql_handle); if( SQL_SUCCESS != SqlStmt_Prepare(stmt, "UPDATE `%s` SET `userid`=?,`user_pass`=?,`sex`=?,`email`=?,`level`=?,`state`=?,`unban_time`=?,`expiration_time`=?,`logincount`=?,`lastlogin`=?,`last_ip`=? WHERE `account_id` = '%d'", db->account_db, acc->account_id) || SQL_SUCCESS != SqlStmt_BindParam(stmt, 0, SQLDT_STRING, (void*)acc->userid, strlen(acc->userid)) || SQL_SUCCESS != SqlStmt_BindParam(stmt, 1, SQLDT_STRING, (void*)acc->pass, strlen(acc->pass)) |