From 5cbbe9a44d9760370550adbfe0e07827807d438d Mon Sep 17 00:00:00 2001 From: Frederic Marchal Date: Mon, 19 Jan 2015 10:31:52 +0100 Subject: [PATCH] Fix the output report directory name The reports were stored in a directory named 000000000-000000000 instead of the correct date covered by the report. --- log.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log.c b/log.c index 89254e8..eb48908 100644 --- a/log.c +++ b/log.c @@ -735,6 +735,8 @@ int main(int argc,char *argv[]) strftime(date1,sizeof(date1),"%x",&period.end); // TRANSLATORS: The %s are the start and end dates in locale format. debuga(_("Period extracted from log files: %s-%s\n"),date0,date1); + } + if (ReadFilter.DateRange[0] != '\0') { getperiod_fromrange(&period,dfrom,duntil); } if (getperiod_buildtext(&period)<0) { -- 2.47.2