CVS: sylpheedclaws/sylpheed-claws/src/common utils.c,1.36.2.92,1.36.2.93
[email protected] Wed, 06 Dec 2006 08:26:03 +0000
Newsgroups
gmane.mail.sylpheed.claws.cvs
Message-ID
<[email protected] >
Update of /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/common
In directory sunsite.dk:/tmp/cvs-serv13578/src/common
Modified Files:
Tag: gtk2
utils.c
Log Message:
2006-12-06 [paul] 2.6.1cvs10
* src/addrharvest.c
* src/editldap.c
* src/expldifdlg.c
* src/news.c
* src/toolbar.c
* src/common/utils.c
...and more renaming
Thanks to Colin
Index: utils.c
===================================================================
RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/common/utils.c,v
retrieving revision 1.36.2.92
retrieving revision 1.36.2.93
diff -u -d -r1.36.2.92 -r1.36.2.93
--- utils.c 2006/12/04 07:57:37 1.36.2.92
+++ utils.c 2006/12/06 08:25:59 1.36.2.93
@@ -3162,12 +3162,12 @@
{
int fd;
#ifdef G_OS_WIN32
- char *template = g_strdup_printf ("%s%csylpheed.XXXXXX",
+ char *template = g_strdup_printf ("%s%cclaws.XXXXXX",
dir, G_DIR_SEPARATOR);
fd = mkstemp_name(template, filename);
g_free(template);
#else
- *filename = g_strdup_printf("%s%csylpheed.XXXXXX", dir, G_DIR_SEPARATOR);
+ *filename = g_strdup_printf("%s%cclaws.XXXXXX", dir, G_DIR_SEPARATOR);
fd = mkstemp(*filename);
#endif
return fdopen(fd, "w+");