From fb45ace1b19f98add7e1d0a0fc6fe45bc1ebac63 Mon Sep 17 00:00:00 2001 From: ultramage Date: Sun, 13 Jul 2008 16:14:32 +0000 Subject: Modified storage data loading * storage is now loaded/saved along with character status * as a consequence, a lot of storage handling code was removed * there is no more locking done within storage data * mapservers no longer cache the data (solves muiltimapserver exploit) * loading storage on char select may decrease charserver performance git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12950 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/txt-converter/char-converter.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/txt-converter') diff --git a/src/txt-converter/char-converter.c b/src/txt-converter/char-converter.c index a5943729a..a43520f20 100644 --- a/src/txt-converter/char-converter.c +++ b/src/txt-converter/char-converter.c @@ -107,7 +107,7 @@ int convert_init(void) input = getchar(); if(input == 'y' || input == 'Y') { - struct storage_data storage_; + struct storage_data storage; ShowMessage("\n"); ShowStatus("Converting Storage Database...\n"); if( (fp = fopen(storage_txt,"r")) == NULL ) @@ -121,11 +121,11 @@ int convert_init(void) lineno++; set=sscanf(line,"%d,%d",&tmp_int[0],&tmp_int[1]); if(set==2) { - memset(&storage_, 0, sizeof(struct storage_data)); - storage_.account_id=tmp_int[0]; - if (storage_fromstr(line,&storage_) == 0) { + memset(&storage, 0, sizeof(struct storage_data)); + storage.account_id = tmp_int[0]; + if (storage_fromstr(line,&storage) == 0) { count++; - storage_tosql(storage_.account_id,&storage_); //to sql. (dump) + storage_tosql(storage.account_id,&storage); //to sql. (dump) } else { ShowError("Error parsing storage line [%s] (at %s:%d)\n", line, storage_txt, lineno); } -- cgit v1.2.3-60-g2f50