aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-attachment-bar.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-08-08 02:28:51 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-08-08 02:28:51 +0800
commitf433ddf7b23823f50017a9b6232fccebeaf142bf (patch)
treebca6bbdb82dbcf0a5b69534cb7aed758e9e22122 /composer/e-msg-composer-attachment-bar.c
parent95684042a284502b02a11a9462d79397d8750914 (diff)
downloadgsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar.gz
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar.bz2
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar.lz
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar.xz
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.tar.zst
gsoc2013-evolution-f433ddf7b23823f50017a9b6232fccebeaf142bf.zip
s/strcasecmp/g_strcasecmp
2000-08-07 Jeffrey Stedfast <fejj@helixcode.com> * e-msg-composer-attachment-bar.c (attach_to_multipart): s/strcasecmp/g_strcasecmp svn path=/trunk/; revision=4574
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r--composer/e-msg-composer-attachment-bar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c
index 405104f608..20b6c3d3d2 100644
--- a/composer/e-msg-composer-attachment-bar.c
+++ b/composer/e-msg-composer-attachment-bar.c
@@ -587,10 +587,10 @@ attach_to_multipart (CamelMultipart *multipart,
* for all else except message (which must be 7bit, 8bit, or
* binary). FIXME.
*/
- if (!strcasecmp (content_type->type, "text")) {
+ if (!g_strcasecmp (content_type->type, "text")) {
camel_mime_part_set_encoding (attachment->body,
CAMEL_MIME_PART_ENCODING_QUOTEDPRINTABLE);
- } else if (strcasecmp (content_type->type, "message") != 0) {
+ } else if (g_strcasecmp (content_type->type, "message") != 0) {
camel_mime_part_set_encoding (attachment->body,
CAMEL_MIME_PART_ENCODING_BASE64);
}