aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-01 10:41:50 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-01 10:41:50 +0800
commit0086ffe2dac6515fb3a35deb0d3e26e507342ffd (patch)
treeadba08f8cc970b9accb88cc7e54f9f4403cd2fe4 /camel
parent7793fae7b50bacddaa3b85f72a8093a2fdabf08b (diff)
downloadgsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar.gz
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar.bz2
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar.lz
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar.xz
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.tar.zst
gsoc2013-evolution-0086ffe2dac6515fb3a35deb0d3e26e507342ffd.zip
make the build again, warnings, doesn't work.
2004-09-30 Not Zed <NotZed@Ximian.com> * camel-imapp-engine.c: make the build again, warnings, doesn't work. svn path=/trunk/; revision=27440
Diffstat (limited to 'camel')
-rw-r--r--camel/providers/imapp/ChangeLog5
-rw-r--r--camel/providers/imapp/camel-imapp-engine.c12
2 files changed, 13 insertions, 4 deletions
diff --git a/camel/providers/imapp/ChangeLog b/camel/providers/imapp/ChangeLog
index 766c24b81a..9c70d8d7b9 100644
--- a/camel/providers/imapp/ChangeLog
+++ b/camel/providers/imapp/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-30 Not Zed <NotZed@Ximian.com>
+
+ * camel-imapp-engine.c: make the build again, warnings, doesn't
+ work.
+
2004-09-28 Not Zed <NotZed@Ximian.com>
* camel-imapp-engine.c (camel_imapp_engine_command_free): assume
diff --git a/camel/providers/imapp/camel-imapp-engine.c b/camel/providers/imapp/camel-imapp-engine.c
index e28843217d..1eaa4b8025 100644
--- a/camel/providers/imapp/camel-imapp-engine.c
+++ b/camel/providers/imapp/camel-imapp-engine.c
@@ -702,12 +702,12 @@ camel_imapp_engine_command_find (CamelIMAPPEngine *imap, const char *name)
/* first, try active */
ic = (CamelIMAPPCommand *)imap->active.head;
- in = ic->next;
+ in = ic->msg.ln.next;
while (in) {
if (strcmp(ic->name, name) == 0)
return ic;
ic = in;
- in = in->next;
+ in = in->msg.ln.next;
}
return NULL;
@@ -723,12 +723,12 @@ camel_imapp_engine_command_find_tag(CamelIMAPPEngine *imap, unsigned int tag)
return ic;
ic = (CamelIMAPPCommand *)imap->active.head;
- in = ic->next;
+ in = ic->msg.ln.next;
while (in) {
if (ic->tag == tag)
return ic;
ic = in;
- in = in->next;
+ in = in->msg.ln.next;
}
return NULL;
@@ -1000,6 +1000,10 @@ imap_engine_command_addv(CamelIMAPPEngine *imap, CamelIMAPPCommand *ic, const ch
static void *
cie_worker(void *data)
{
+ CamelIMAPPCommand *ic = data;
+ CamelIMAPPEngine *imap;
+ CamelIMAPPCommandPart *cp;
+
/* FIXME: remove select stuff */
/* see if we need to pre-queue a select command to select the right folder first */