diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-05 00:36:54 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-05 00:36:54 +0800 |
commit | b92cd47ad5105869b66b2166e2dafecbf8d29c93 (patch) | |
tree | 4dbb4d18f49594b603155abd4696e1dc286f99d1 /camel/camel-stream-fs.c | |
parent | 8a9862a5504e3987af99b9a444ca141736051c4d (diff) | |
download | gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar.gz gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar.bz2 gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar.lz gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar.xz gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.tar.zst gsoc2013-evolution-b92cd47ad5105869b66b2166e2dafecbf8d29c93.zip |
finshed implementation (_delete_messages): implemented.
1999-08-04 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/providers/MH/camel-mh-folder.c (_delete):
finshed implementation
(_delete_messages): implemented.
svn path=/trunk/; revision=1076
Diffstat (limited to 'camel/camel-stream-fs.c')
-rw-r--r-- | camel/camel-stream-fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-stream-fs.c b/camel/camel-stream-fs.c index 0e006a28f3..a8e0dcb6c4 100644 --- a/camel/camel-stream-fs.c +++ b/camel/camel-stream-fs.c @@ -118,7 +118,7 @@ camel_stream_fs_new_with_name (gchar *name, CamelStreamFsMode mode) fd = open (name, flags, 0600); if (fd==-1) { - CAMEL_LOG_FULL_DEBUG ( "CamelStreamFs::new_with_name can not obtain fd for file \"%s\"\n", name); + CAMEL_LOG_WARNING ( "CamelStreamFs::new_with_name can not obtain fd for file \"%s\"\n", name); CAMEL_LOG_FULL_DEBUG ( " Full error text is : %s\n", strerror(errno)); return NULL; } |