summaryrefslogtreecommitdiff
path: root/egg
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2015-04-08 14:07:27 +0200
committerStef Walter <stefw@gnome.org>2015-04-08 14:09:11 +0200
commit993100c570dd99723254006adb5219838bbd1e1d (patch)
treeb316b1cd8ac8ef4a4fbe7d51fa7a1589ada3fc96 /egg
parent2411d155e180da712c53eb0d67e4a5eaaea214b3 (diff)
downloadgnome-keyring-993100c570dd99723254006adb5219838bbd1e1d.tar.gz
egg: Fix regression caused by earlier GCC fix
Diffstat (limited to 'egg')
-rw-r--r--egg/egg-dn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/egg/egg-dn.c b/egg/egg-dn.c
index 4bd9201d..46dfc947 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;
}