[evolution-data-server] CamelSMIMEContext cleanups.
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] CamelSMIMEContext cleanups.
- Date: Fri, 22 Feb 2013 23:17:22 +0000 (UTC)
commit bb4de2c6daea238212d6a5a8950f34b7ab103f43
Author: Matthew Barnes <mbarnes redhat com>
Date: Fri Feb 22 17:47:01 2013 -0500
CamelSMIMEContext cleanups.
camel/camel-smime-context.c | 38 +++++++++++++++++++-------------------
1 files changed, 19 insertions(+), 19 deletions(-)
---
diff --git a/camel/camel-smime-context.c b/camel/camel-smime-context.c
index 07a8ba3..467f77d 100644
--- a/camel/camel-smime-context.c
+++ b/camel/camel-smime-context.c
@@ -711,19 +711,19 @@ smime_context_hash_to_id (CamelCipherContext *context,
CamelCipherHash hash)
{
switch (hash) {
- case CAMEL_CIPHER_HASH_MD5:
- return "md5";
- case CAMEL_CIPHER_HASH_SHA1:
- case CAMEL_CIPHER_HASH_DEFAULT:
- return "sha1";
- case CAMEL_CIPHER_HASH_SHA256:
- return "sha256";
- case CAMEL_CIPHER_HASH_SHA384:
- return "sha384";
- case CAMEL_CIPHER_HASH_SHA512:
- return "sha512";
- default:
- return NULL;
+ case CAMEL_CIPHER_HASH_MD5:
+ return "md5";
+ case CAMEL_CIPHER_HASH_SHA1:
+ case CAMEL_CIPHER_HASH_DEFAULT:
+ return "sha1";
+ case CAMEL_CIPHER_HASH_SHA256:
+ return "sha256";
+ case CAMEL_CIPHER_HASH_SHA384:
+ return "sha384";
+ case CAMEL_CIPHER_HASH_SHA512:
+ return "sha512";
+ default:
+ return NULL;
}
}
@@ -731,16 +731,16 @@ static CamelCipherHash
smime_context_id_to_hash (CamelCipherContext *context,
const gchar *id)
{
- if (id) {
- if (!strcmp (id, "md5"))
+ if (id != NULL) {
+ if (g_str_equal (id, "md5"))
return CAMEL_CIPHER_HASH_MD5;
- else if (!strcmp (id, "sha1"))
+ if (g_str_equal (id, "sha1"))
return CAMEL_CIPHER_HASH_SHA1;
- else if (!strcmp (id, "sha256"))
+ if (g_str_equal (id, "sha256"))
return CAMEL_CIPHER_HASH_SHA256;
- else if (!strcmp (id, "sha384"))
+ if (g_str_equal (id, "sha384"))
return CAMEL_CIPHER_HASH_SHA384;
- else if (!strcmp (id, "sha512"))
+ if (g_str_equal (id, "sha512"))
return CAMEL_CIPHER_HASH_SHA512;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]