diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-13 10:11:57 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-13 10:11:57 +0800 |
commit | 6fe78080d707fcb986c971c9c106d37d6248678f (patch) | |
tree | ea6f8a7f96516a3f74ef296da84193f393f7dfeb /camel/providers | |
parent | e6911693723f9d9c9b274351539f87deffe5beb8 (diff) | |
download | gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar.gz gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar.bz2 gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar.lz gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar.xz gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.tar.zst gsoc2013-evolution-6fe78080d707fcb986c971c9c106d37d6248678f.zip |
Chris forgot to add #include <e-util/e-util.h> to the source files
2000-07-12 Jeffrey Stedfast <fejj@helixcode.com>
Chris forgot to add #include <e-util/e-util.h> to the source files
* providers/imap/camel-imap-store.c (imap_connect): Fixed Peter's
fix, we don't want to send a string to a %d.
svn path=/trunk/; revision=4133
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index bec33edf8a..fc852bd659 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -35,6 +35,7 @@ #include <unistd.h> #include <errno.h> +#include <e-util/e-util.h> #include "camel-imap-store.h" #include "camel-imap-folder.h" @@ -333,7 +334,7 @@ imap_connect (CamelService *service, CamelException *ex) "Unknown error"); } - if (strstrcase (result, "SEARCH")) + if (e_strstrcase (result, "SEARCH")) store->has_search_capability = TRUE; else store->has_search_capability = FALSE; @@ -559,13 +560,13 @@ camel_imap_command (CamelImapStore *store, CamelFolder *folder, char **ret, char } if (p) { - if (strstrcase (p, "READ-WRITE")) + if (e_strstrcase (p, "READ-WRITE")) mode = } #endif } #if 0 - if ((recent = strstrcase (r, "RECENT"))) { + if ((recent = e_strstrcase (r, "RECENT"))) { char *p; for (p = recent; p > r && *p != '*'; p--); @@ -678,7 +679,7 @@ camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, char ** return s; } #if 0 - if ((recent = strstrcase (r, "RECENT"))) { + if ((recent = e_strstrcase (r, "RECENT"))) { char *p; for (p = recent; p > r && *p != '*'; p--); |