summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-26 17:17:05 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-26 17:17:05 +0000
commit7924f0a9251dba9dbd7acae7d6bff3cb8610ab9b (patch)
tree054a629b21e135e16b4d110e37ef720199179a86
parentf8940c74683681af37179e1fe6c471c0f290528b (diff)
downloadhercules-7924f0a9251dba9dbd7acae7d6bff3cb8610ab9b.tar.gz
hercules-7924f0a9251dba9dbd7acae7d6bff3cb8610ab9b.tar.bz2
hercules-7924f0a9251dba9dbd7acae7d6bff3cb8610ab9b.tar.xz
hercules-7924f0a9251dba9dbd7acae7d6bff3cb8610ab9b.zip
- Removed log_uptime that was accidentally introduced in r1208
- Added some more freedom for the txt log paths since 32 wasn't enough git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9716 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt3
-rw-r--r--src/map/log.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 01c12521c..7b34a8247 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,9 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2007/01/26
+ * Added some more freedom for the txt log paths since 32 wasn't enough
+ * Removed log_uptime that was accidentally introduced in r1208 [ultramage]
2007/01/24
* Cleaned up some more the Joint Beat implementation, so the status don't
take effect until the attack connects. [Skotlex]
diff --git a/src/map/log.h b/src/map/log.h
index c9d88cc37..872506ac5 100644
--- a/src/map/log.h
+++ b/src/map/log.h
@@ -49,10 +49,8 @@ extern struct Log_Config {
int sql_logs;
int rare_items_log,refine_items_log,price_items_log,amount_items_log; //for filter
int branch, drop, mvpdrop, zeny, gm, npc, chat;
- char log_branch[32], log_pick[32], log_zeny[32], log_mvpdrop[32], log_gm[32], log_npc[32], log_chat[32];
+ char log_branch[64], log_pick[64], log_zeny[64], log_mvpdrop[64], log_gm[64], log_npc[64], log_chat[64];
char log_branch_db[32], log_pick_db[32], log_zeny_db[32], log_mvpdrop_db[32], log_gm_db[32], log_npc_db[32], log_chat_db[32];
- int uptime;
- char log_uptime[32];
} log_config;
#endif