From b00999893006891affccc15cfd5d60b9adb7af8c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 17 Aug 2004 03:09:46 -0400 Subject: if NO_CLEANUP is defined in the Makefile (now default), no cleanup is done --- textual.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'textual.cc') diff --git a/textual.cc b/textual.cc index 7cb5181c..03953141 100644 --- a/textual.cc +++ b/textual.cc @@ -366,7 +366,7 @@ unsigned int parse_textual_journal(std::istream& in, journal_t * journal, char * n = next_element(p, true); last_desc = n ? n : ""; - static struct std::tm when; + struct std::tm when; if (strptime(date.c_str(), "%Y/%m/%d %H:%M:%S", &when)) { time_in = std::mktime(&when); last_account = account_stack.front()->find_account(p); @@ -392,7 +392,7 @@ unsigned int parse_textual_journal(std::istream& in, journal_t * journal, date += " "; date += time; - static struct std::tm when; + struct std::tm when; if (strptime(date.c_str(), "%Y/%m/%d %H:%M:%S", &when)) { entry_t * curr = new entry_t; curr->date = std::mktime(&when); -- cgit v1.2.3