From 57d39f099688b803d2666e9ca738a8ad4ea96469 Mon Sep 17 00:00:00 2001 From: Marcel Poul Date: Fri, 2 Sep 2011 12:36:12 +0000 Subject: [PATCH] savannah bug #85224 fixed. DN matches are not case-sensitive anymore. --- org.glite.lbjp-common.gss/src/glite_gss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.glite.lbjp-common.gss/src/glite_gss.c b/org.glite.lbjp-common.gss/src/glite_gss.c index bba9bc1..bff309f 100644 --- a/org.glite.lbjp-common.gss/src/glite_gss.c +++ b/org.glite.lbjp-common.gss/src/glite_gss.c @@ -1561,7 +1561,7 @@ edg_wll_gss_equal_subj(const char *a, const char *b) if (!an || !bn) res = 0; else - res = !strcmp(an,bn); + res = !strcasecmp(an,bn); free(an); free(bn); return res; -- 1.8.2.3