[gnome-keyring] egg: Fix regression caused by earlier GCC fix
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-keyring] egg: Fix regression caused by earlier GCC fix
- Date: Wed, 8 Apr 2015 12:12:50 +0000 (UTC)
commit 993100c570dd99723254006adb5219838bbd1e1d
Author: Stef Walter <stefw gnome org>
Date: Wed Apr 8 14:07:27 2015 +0200
egg: Fix regression caused by earlier GCC fix
egg/egg-dn.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/egg/egg-dn.c b/egg/egg-dn.c
index 4bd9201..46dfc94 100644
--- a/egg/egg-dn.c
+++ b/egg/egg-dn.c
@@ -227,7 +227,7 @@ egg_dn_read_part (GNode *asn, const gchar *match)
/* Does it match either the OID or the displayable? */
if (g_ascii_strcasecmp (g_quark_to_string (oid), match) != 0) {
name = egg_oid_get_name (oid);
- if (g_ascii_strcasecmp (name, match) == 0)
+ if (g_ascii_strcasecmp (name, match) != 0)
continue;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]