aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-pgp-mime.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-11-01 05:41:26 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-01 05:41:26 +0800
commitf48db35928c31854f828f04d52b5ee9df858e4e5 (patch)
tree8af24d75b2810e5b8f44a7c7bc4109ff8926a733 /camel/camel-pgp-mime.c
parent613453b1095e325149b8d37e5731d415e1d5f9bd (diff)
downloadgsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar.gz
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar.bz2
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar.lz
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar.xz
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.tar.zst
gsoc2013-evolution-f48db35928c31854f828f04d52b5ee9df858e4e5.zip
Remove a ton of useless snot.
2002-10-31 Jeffrey Stedfast <fejj@ximian.com> Remove a ton of useless snot. * Makefile.am: Remove gstring-util.[c,h] from the build. * gstring-util.[c,h]: Removed. * string-utils.c (string_equal_for_glist): Removed. (string_split): Removed. (string_trim): Removed. (string_prefix): Removed. (string_unquote): Removed. (strip): Removed. * hash-table-utils.c (g_hash_table_generic_free): Removed. g_str[n]casecmp functions are deprecated in glib2. * string-utils.c (strstrcase): Use strncasecmp instead of g_strncasecmp. * hash-table-utils.c (g_strcase_equal): Use strcasecmp instead of g_strcasecmp. * camel-smime-utils.c (camel_smime_is_smime_v3_signed): Same. (camel_smime_is_smime_v3_encrypted): Here too. * camel-sasl-digest-md5.c (decode_data_type): And here. (parse_server_challenge): Again here. * camel-pgp-mime.c (camel_pgp_mime_is_rfc2015_signed): Same. (camel_pgp_mime_is_rfc2015_encrypted): Same * camel-mime-part-utils.c (check_html_charset): Here too. * camel-folder-summary.c (camel_system_flag): Same. svn path=/trunk/; revision=18472
Diffstat (limited to 'camel/camel-pgp-mime.c')
-rw-r--r--camel/camel-pgp-mime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-pgp-mime.c b/camel/camel-pgp-mime.c
index f9d0ea80a9..43562495d0 100644
--- a/camel/camel-pgp-mime.c
+++ b/camel/camel-pgp-mime.c
@@ -63,7 +63,7 @@ camel_pgp_mime_is_rfc2015_signed (CamelMimePart *mime_part)
#ifdef ENABLE_PEDANTIC_PGPMIME
/* check that we have a protocol param with the value: "application/pgp-signature" */
param = header_content_type_param (type, "protocol");
- if (!param || g_strcasecmp (param, "application/pgp-signature"))
+ if (!param || strcasecmp (param, "application/pgp-signature"))
return FALSE;
/* check that we have a micalg parameter */
@@ -126,7 +126,7 @@ camel_pgp_mime_is_rfc2015_encrypted (CamelMimePart *mime_part)
#ifdef ENABLE_PEDANTIC_PGPMIME
/* check that we have a protocol param with the value: "application/pgp-encrypted" */
param = header_content_type_param (type, "protocol");
- if (!param || g_strcasecmp (param, "application/pgp-encrypted"))
+ if (!param || strcasecmp (param, "application/pgp-encrypted"))
return FALSE;
#endif /* ENABLE_PEDANTIC_PGPMIME */