From 651d6857d7784f4f2a7412e0eae1681fc7ccd147 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 15 Feb 2013 18:12:47 -0200 Subject: MySQL Update Checker: Updated Added a primary key to the `sql_updates` table (special thanks to Trojal) Modified the parser to ignore new/empty lines and added support for "//" comments in the index file. Signed-off-by: shennetsind --- src/common/sql.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common') diff --git a/src/common/sql.c b/src/common/sql.c index fdb6e0114..c0ab19e4e 100644 --- a/src/common/sql.c +++ b/src/common/sql.c @@ -1031,6 +1031,9 @@ void Sql_HerculesUpdateCheck(Sql* self) { char timestamp[11];// "1360186680" (10) + 1 FILE* ufp;/* upgrade fp */ + if( line[0] == '\n' || ( line[0] == '/' && line[1] == '/' ) )/* skip \n and "//" comments */ + continue; + sprintf(path,"sql-files/upgrades/%s",line); if( !( ufp = fopen(path, "r") ) ) { -- cgit v1.2.3-60-g2f50