diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-13 10:14:50 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-13 10:14:50 +0800 |
commit | 548fa4f72a68b3c47034efcc98a4e573d53f91a7 (patch) | |
tree | 7bb81b82c1d04b99bae7c9128c0a0c613208b582 /camel/providers | |
parent | 6fe78080d707fcb986c971c9c106d37d6248678f (diff) | |
download | gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar.gz gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar.bz2 gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar.lz gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar.xz gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.tar.zst gsoc2013-evolution-548fa4f72a68b3c47034efcc98a4e573d53f91a7.zip |
Oops, missed a source file.
Added #include <e-util/e-util.h> and renamed strstrcase to e_strstrcase in providers/imap/camel-imap-folder.c
svn path=/trunk/; revision=4134
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 5165845a32..da426ed6f3 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -34,6 +34,8 @@ #include <string.h> #include <fcntl.h> +#include <e-util/e-util.h> + #include "camel-imap-folder.h" #include "camel-imap-store.h" #include "camel-imap-stream.h" @@ -967,7 +969,7 @@ get_header_field (gchar *header, gchar *field) { gchar *part, *index, *p, *q; - index = strstrcase (header, field); + index = e_strstrcase (header, field); if (index == NULL) return NULL; |