Sent: Thu May 24 2012 07:02:28 GMT-0400 (EDT) From: Nick Milas <nick@eurobjects.com> To: openldap-technical <openldap-technical@openldap.org> Subject: dn.exact vs dn.base I was wondering whether there is any difference between dn.exact and dn.base constructs.Went digging through the source as I've been curious about this as well. Turns out, the difference is nothing :-) ÂÂÂÂÂÂÂÂÂÂÂ if ( style == NULL || *style == '\0' || ÂÂÂÂÂÂÂÂÂÂÂÂÂÂ strcasecmp( style, "exact" ) == 0 || ÂÂÂÂÂÂÂÂÂÂÂÂÂÂ strcasecmp( style, "baseObject" ) == 0 || ÂÂÂÂÂÂÂÂÂÂÂÂÂÂ strcasecmp( style, "base" ) == 0 ) ÂÂÂÂÂÂÂÂÂÂÂ { ÂÂÂÂÂÂÂÂÂÂÂÂÂÂ sty = ACL_STYLE_BASE; -Patrick |