From: Marcel Poul Date: Fri, 2 Sep 2011 12:36:12 +0000 (+0000) Subject: savannah bug #85224 fixed. DN matches are not case-sensitive anymore. X-Git-Tag: glite-lbjp-common_R_3_0_8_1~9 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=57d39f099688b803d2666e9ca738a8ad4ea96469;p=jra1mw.git savannah bug #85224 fixed. DN matches are not case-sensitive anymore. --- 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;