aboutsummaryrefslogtreecommitdiffstats
path: root/mail/component-factory.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-08-08 02:32:55 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-08-08 02:32:55 +0800
commit0a9fdd88421c68d3ecdd88bb220c72b111f1fe55 (patch)
tree82981ed9817f00bb47d3c2806005b2d08105a3a3 /mail/component-factory.c
parentf433ddf7b23823f50017a9b6232fccebeaf142bf (diff)
downloadgsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar.gz
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar.bz2
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar.lz
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar.xz
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.tar.zst
gsoc2013-evolution-0a9fdd88421c68d3ecdd88bb220c72b111f1fe55.zip
s/strncasecmp/g_strncasecmp
2000-08-07 Jeffrey Stedfast <fejj@helixcode.com> * mail-display.c: * component-factory.c: s/strncasecmp/g_strncasecmp * mail-format.c (write_headers): Get rid of kludge around subject beginning with spaces. (mail_generate_reply): Get rid of kludge around subject beginning with spaces and also use g_strncasecmp instead of strncasecmp for portability * mail-ops.c (forward_msg): Get rid of kludges around subject beginning with spaces. svn path=/trunk/; revision=4575
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r--mail/component-factory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 8130800137..7b01bd91e1 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -259,7 +259,7 @@ create_imap_storage (EvolutionShellComponent *shell_component)
source = s->url;
}
- if (!source || strncasecmp (source, "imap://", 7))
+ if (!source || g_strncasecmp (source, "imap://", 7))
return;
shell_client = evolution_shell_component_get_owner (shell_component);
@@ -402,7 +402,7 @@ create_news_storage (EvolutionShellComponent *shell_component)
source = s->url;
}
- if (!source || strncasecmp (source, "news://", 7))
+ if (!source || g_strncasecmp (source, "news://", 7))
return;
shell_client = evolution_shell_component_get_owner (shell_component);