From 7e872db956da543b321e69cf5ff6c8d0866d9cc4 Mon Sep 17 00:00:00 2001 From: DukePyrolator Date: Tue, 22 Jun 2010 21:33:29 +0200 Subject: changed the name of the logfile from servics.log. to .services.log to make windows users happy --- src/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/log.cpp') diff --git a/src/log.cpp b/src/log.cpp index 9ebdb4a6b..3ce47c526 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -30,7 +30,7 @@ static int get_logname(char *name, int count, struct tm *tm) /* fix bug 577 */ strftime(timestamp, sizeof(timestamp), "%Y%m%d", tm); - snprintf(name, count, "logs/%s.%s", log_filename.c_str(), timestamp); + snprintf(name, count, "logs/%s.%s", timestamp, log_filename.c_str()); curday = tm->tm_yday; return 1; -- cgit