[Fedora-directory-commits] ldapserver/ldap/servers/slapd attr.c, 1.6, 1.7

Richard Allen Megginson (rmeggins) fedora-directory-commits at redhat.com
Thu Feb 23 20:56:00 UTC 2006


Author: rmeggins

Update of /cvs/dirsec/ldapserver/ldap/servers/slapd
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv4989/ldapserver/ldap/servers/slapd

Modified Files:
	attr.c 
Log Message:
Bug: 179810
Description: crash: modify/delete when attr name doesn't match database
Reviewed by: All (Thanks!)
Fix description: Use case insensitive comparison for attribute names.



Index: attr.c
===================================================================
RCS file: /cvs/dirsec/ldapserver/ldap/servers/slapd/attr.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- attr.c	25 Aug 2005 00:58:27 -0000	1.6
+++ attr.c	23 Feb 2006 20:55:53 -0000	1.7
@@ -112,7 +112,7 @@
 
     switch ( opt ) {
     case SLAPI_TYPE_CMP_EXACT: /* compare base name + options as given */
-        rc = strcmp( a1, a2 );
+        rc = strcasecmp( a1, a2 );
 		break;
 
     case SLAPI_TYPE_CMP_BASE: /* ignore options on both names - compare base names only */




More information about the Fedora-directory-commits mailing list