summaryrefslogtreecommitdiff
path: root/egg
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2015-03-23 10:25:44 +0100
committerStef Walter <stefw@gnome.org>2015-03-23 10:25:44 +0100
commit2411d155e180da712c53eb0d67e4a5eaaea214b3 (patch)
treec02370d6d869c56c05951de92a237917b09644da /egg
parentbf43581f4248dea3595b9c329938acd03c8e5bc4 (diff)
downloadgnome-keyring-2411d155e180da712c53eb0d67e4a5eaaea214b3.tar.gz
Fix issues highlighted by GCC 5.0.x
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 1c38eacb..4bd9201d 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;
}