From 700daa3c3f2349aab0118d02fb2da6e2932c7ec2 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> Date: Sat, 5 Feb 2005 05:48:54 +0000 Subject: txt convertors reading inter_athena.conf import command git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1038 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog.txt | 2 ++ src/txt-converter/char/char-converter.c | 3 +++ src/txt-converter/login/login-converter.c | 4 ++++ 3 files changed, 9 insertions(+) diff --git a/Changelog.txt b/Changelog.txt index 4cb2220f1..95319d2bd 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,8 @@ Date Added 02/04 + * TXT convertors now read the import command in inter_athena.conf + [SVN 1038: Ajarn] * Fixed some compile errors [SVN 1037: MouseJstr] * Added common/buffer.(c/h) [SVN 1033: Ajarn] * Login server can now set it's ip address in the config [SVN 1033: Ajarn] diff --git a/src/txt-converter/char/char-converter.c b/src/txt-converter/char/char-converter.c index 1c5028d7e..8ffefc83d 100644 --- a/src/txt-converter/char/char-converter.c +++ b/src/txt-converter/char/char-converter.c @@ -789,6 +789,9 @@ int inter_config_read(const char *cfgName) { else if(strcmpi(w1,"db_server_logindb")==0){ strcpy(db_server_logindb, w2); printf ("set db_server_logindb : %s\n",w2); + //support the import command, just like any other config + }else if(strcmpi(w1,"import")==0){ + sql_config_read(w2); } } fclose(fp); diff --git a/src/txt-converter/login/login-converter.c b/src/txt-converter/login/login-converter.c index f452d70aa..d301e8db3 100644 --- a/src/txt-converter/login/login-converter.c +++ b/src/txt-converter/login/login-converter.c @@ -234,6 +234,10 @@ int login_config_read(const char *cfgName){ strcpy(db_server_logindb, w2); printf ("set db_server_logindb : %s\n",w2); } + //support the import command, just like any other config + else if(strcmpi(w1,"import")==0){ + login_config_read(w2); + } } fclose(fp); printf ("End reading interserver configuration...\n"); -- cgit v1.2.3-70-g09d2