aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-06-07 02:55:45 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-07 02:55:45 +0800
commitc1aac7c40cf831bfcc8c15fe2881666395754ae1 (patch)
tree084cd0e2beb4be27657aa9a55c83dc2359ccc669 /camel/providers/imap/camel-imap-store.c
parentae33d3f67e77c5182dec21c388605b4a4ae48e51 (diff)
downloadgsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar.gz
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar.bz2
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar.lz
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar.xz
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.tar.zst
gsoc2013-evolution-c1aac7c40cf831bfcc8c15fe2881666395754ae1.zip
worked on getting providers/imap/* to build cleanly, fixed a number of stupid errors and things like that
am commit'ing code since there are some volunteers that would like to work on imap svn path=/trunk/; revision=3440
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-rw-r--r--camel/providers/imap/camel-imap-store.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 2e6c2b3d9c..54ce3c570c 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -334,7 +334,7 @@ static CamelFolder
* what was there before, and there's no
* CamelImapFolder::get_subfolder yet anyway...
*/
- CF_CLASS (new_folder)->init (new_folder, store, NULL,
+ CAMEL_FOLDER_CLASS (new_folder)->init (new_folder, store, NULL,
folder_name, '/', ex);
return new_folder;
@@ -464,9 +464,9 @@ camel_imap_command_extended (CamelImapStore *store, char **ret, char *fmt, ...)
/* Create the command */
cmdid = g_strdup_printf("A%.5d", store->command++);
- va_start (ap, fmt);
- cmdbuf = g_strdup_vprintf (fmt, ap);
- va_end (ap);
+ va_start (app, fmt);
+ cmdbuf = g_strdup_vprintf (fmt, app);
+ va_end (app);
fprintf(stderr, "sending : %s %s\r\n", cmdid, cmdbuf);
@@ -518,7 +518,7 @@ camel_imap_command_extended (CamelImapStore *store, char **ret, char *fmt, ...)
*ret = g_strjoinv ("\n", (gchar **)data->pdata);
} else {
if (status != CAMEL_IMAP_FAIL)
- *ret = g_strdup (strchr (respbuf, ' ' + 1);
+ *ret = g_strdup (strchr (respbuf, ' ' + 1));
else
*ret = NULL;
}