From e085e7e66628414e659d4375414abdf0fd733d20 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 28 May 2001 18:47:24 +0000 Subject: Use g_strcasecmp() because some systems don't have strcasecmp(). Also, 2001-05-28 Jeffrey Stedfast * 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 --- camel/ChangeLog | 6 ++++++ camel/camel-mime-utils.c | 5 +++-- camel/camel-pgp-mime.c | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) (limited to 'camel') diff --git a/camel/ChangeLog b/camel/ChangeLog index 767224d0a2..e09c0532e1 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2001-05-28 Jeffrey Stedfast + + * 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. + 2001-05-27 Dan Winship * tests/lib/messages.c (test_message_read_file): Fix an fd leak diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index b8ac8aae93..2686b9921b 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -1778,13 +1778,14 @@ header_set_param(struct _header_param **l, const char *name, const char *value) while (p->next) { pn = p->next; - if (!strcasecmp(pn->name, name)) { - g_free(pn->value); + if (!g_strcasecmp (pn->name, name)) { + g_free (pn->value); if (value) { pn->value = g_strdup(value); return pn; } else { p->next = pn->next; + g_free (pn->name); g_free(pn); return NULL; } 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; -- cgit v1.2.3