diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-05-29 02:47:24 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-29 02:47:24 +0800 |
commit | e085e7e66628414e659d4375414abdf0fd733d20 (patch) | |
tree | 28069f9fe606394a247d01aaf21c2adcd5434af5 /camel/camel-pgp-mime.c | |
parent | 8fddf45b58451db958f96ec0aea12f8076684da9 (diff) | |
download | gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar.gz gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar.bz2 gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar.lz gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar.xz gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.tar.zst gsoc2013-evolution-e085e7e66628414e659d4375414abdf0fd733d20.zip |
Use g_strcasecmp() because some systems don't have strcasecmp(). Also,
2001-05-28 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-utils.c (header_set_param): Use g_strcasecmp()
because some systems don't have strcasecmp(). Also, when removing
a param, make sure to free the param->name too.
svn path=/trunk/; revision=10030
Diffstat (limited to 'camel/camel-pgp-mime.c')
-rw-r--r-- | camel/camel-pgp-mime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-pgp-mime.c b/camel/camel-pgp-mime.c index ba91804579..ce8071cbc2 100644 --- a/camel/camel-pgp-mime.c +++ b/camel/camel-pgp-mime.c @@ -54,7 +54,7 @@ camel_pgp_mime_is_rfc2015_signed (CamelMimePart *mime_part) if (!header_content_type_is (type, "multipart", "signed")) return FALSE; - /* check that we have a protocol param with the value: "application/pgp-signed" */ + /* 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")) return FALSE; |