From: Colin Leroy Date: Tue, 17 Aug 2010 16:38:10 +0000 (+0000) Subject: 2010-08-17 [colin] 3.7.6cvs28 X-Git-Tag: REL_3_7_7~39 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=3e992a014077ef68ffcc50df2e3b059068452e61 2010-08-17 [colin] 3.7.6cvs28 * src/main.c Fix previous patch (our own tmp dir is inside our rc dir) --- diff --git a/ChangeLog b/ChangeLog index 500aaaa46..be12026cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-08-17 [colin] 3.7.6cvs28 + + * src/main.c + Fix previous patch (our own tmp dir is inside + our rc dir) + 2010-08-16 [colin] 3.7.6cvs27 * src/main.c diff --git a/PATCHSETS b/PATCHSETS index 1cd57346d..a3ae654b2 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4023,3 +4023,4 @@ ( cvs diff -u -r 1.25.2.66 -r 1.25.2.67 src/stock_pixmap.c; ) > 3.7.6cvs25.patchset ( cvs diff -u -r 1.1.4.12 -r 1.1.4.13 src/gtk/gtkshruler.c; ) > 3.7.6cvs26.patchset ( cvs diff -u -r 1.115.2.226 -r 1.115.2.227 src/main.c; ) > 3.7.6cvs27.patchset +( cvs diff -u -r 1.115.2.227 -r 1.115.2.228 src/main.c; ) > 3.7.6cvs28.patchset diff --git a/configure.ac b/configure.ac index c39740b59..dc3e84a03 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=27 +EXTRA_VERSION=28 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/main.c b/src/main.c index 7cb14b937..87ea4293e 100644 --- a/src/main.c +++ b/src/main.c @@ -793,8 +793,8 @@ static void win32_log(const gchar *log_domain, GLogLevelFlags log_level, const g static void win32_open_log(void) { - gchar *logfile = g_strconcat(get_tmp_dir(), G_DIR_SEPARATOR_S, "claws-win32.log", NULL); - gchar *oldlogfile = g_strconcat(get_tmp_dir(), G_DIR_SEPARATOR_S, "claws-win32.log.bak", NULL); + gchar *logfile = g_strconcat(g_get_tmp_dir(), G_DIR_SEPARATOR_S, "claws-win32.log", NULL); + gchar *oldlogfile = g_strconcat(g_get_tmp_dir(), G_DIR_SEPARATOR_S, "claws-win32.log.bak", NULL); if (is_file_exist(logfile)) { if (rename_force(logfile, oldlogfile) < 0)