savannah bug #85224 fixed. DN matches are not case-sensitive anymore.
authorMarcel Poul <marcel.poul@cern.ch>
Fri, 2 Sep 2011 12:36:12 +0000 (12:36 +0000)
committerMarcel Poul <marcel.poul@cern.ch>
Fri, 2 Sep 2011 12:36:12 +0000 (12:36 +0000)
org.glite.lbjp-common.gss/src/glite_gss.c

index bba9bc1..bff309f 100644 (file)
@@ -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;