Issue information

Issue ID
#1979
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Aug 2, 2008 14:16
Last Post
Hercules Elf Bot
Aug 2, 2008 14:16
Confirmation
N/A

Hercules Elf Bot - Aug 2, 2008 14:16

Originally posted by [b]Ai4rei[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=1979

/src/char_sql/char.c in function do_final:
QUOTE
if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `ragsrvinfo") )
Sql_ShowDebug(sql_handle);


should be:
QUOTE
if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `ragsrvinfo`") )
Sql_ShowDebug(sql_handle);

(missing ` after ragsrvinfo)