aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-uid-cache.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-07-23 22:57:22 +0800
committerDan Winship <danw@src.gnome.org>2003-07-23 22:57:22 +0800
commitf5ed342cd3980242c3d3403dd49b6056e658b664 (patch)
treeff5c6536e7d4e76bf9246f4805cea0600f28e5d7 /camel/camel-uid-cache.c
parent64a3e0a91c24b5b6677bfc1149505e620ddc4875 (diff)
downloadgsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar.gz
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar.bz2
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar.lz
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar.xz
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.tar.zst
gsoc2013-evolution-f5ed342cd3980242c3d3403dd49b6056e658b664.zip
#include camel-file-utils.h for camel_read()
* camel-block-file.c: #include camel-file-utils.h for camel_read() * camel-uid-cache.c (camel_uid_cache_save): Remove unused variable and label. * camel-url.c: #include camel-string-utils.h for camel_strdown * providers/pop3/camel-pop3-store.c (pop3_try_authenticate): Cast an (unsigned char *) to (char *) to fix a warning svn path=/trunk/; revision=21902
Diffstat (limited to 'camel/camel-uid-cache.c')
-rw-r--r--camel/camel-uid-cache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/camel/camel-uid-cache.c b/camel/camel-uid-cache.c
index c31c2761b2..2a2a52daeb 100644
--- a/camel/camel-uid-cache.c
+++ b/camel/camel-uid-cache.c
@@ -148,7 +148,6 @@ maybe_write_uid (gpointer key, gpointer value, gpointer data)
gboolean
camel_uid_cache_save (CamelUIDCache *cache)
{
- struct stat st;
char *filename;
int errnosav;
int fd;
@@ -167,7 +166,6 @@ camel_uid_cache_save (CamelUIDCache *cache)
if (cache->fd == -1)
goto exception;
- overwrite:
if (fsync (fd) == -1)
goto exception;