diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-06-17 22:24:28 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-17 22:24:28 +0800 |
commit | f105a271f1474200497a98966586d647c9b851a3 (patch) | |
tree | 9eccd1102061e2544b25e632426b69315bc2a7cf /camel/providers | |
parent | d8fcdfcb0fa36880cccf35ad7005fcb16e512cd9 (diff) | |
download | gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar.gz gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar.bz2 gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar.lz gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar.xz gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.tar.zst gsoc2013-evolution-f105a271f1474200497a98966586d647c9b851a3.zip |
Only ignore if (tag & CAMEL_ARG_TAG) == CAMEL_ARG_IGNORE, not if (tag &
2004-06-17 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-store.c (imap_setv): Only ignore if
(tag & CAMEL_ARG_TAG) == CAMEL_ARG_IGNORE, not if (tag &
CAMEL_ARG_IGNORE) is true.
svn path=/trunk/; revision=26387
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index af18d8043c..ece583af9f 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -315,7 +315,7 @@ imap_setv (CamelObject *object, CamelException *ex, CamelArgV *args) tag = args->argv[i].tag; /* make sure this arg wasn't already handled */ - if (tag & CAMEL_ARG_IGNORE) + if ((tag & CAMEL_ARG_TAG) == CAMEL_ARG_IGNORE) continue; /* make sure this is an arg we're supposed to handle */ |