OpenLDAP 2.1.6 Engineering
Fixed slapd unsupported non-critical control handling
Fixed slapd value_find() uninitialized variable bug (ITS#2097)
- Fixed back-dnssrv default referral handling
+ Fixed back-dnssrv default referral handling (ITS#2116)
Updated libldap_r Pth support (ITS#724) (ITS#1033)
Updated slapd adlist support
+ Disable suffixAlias feature
Build Environment
Fixed back-bdb module linking problem
Updated pthreads detection
Specify an alternate suffix that may be used to reference an already defined
database suffix. Operations specifying DNs residing under the alias
will execute as if they had specified the aliased suffix.
+.I This feature is no supported in this version of
+.BI slapd (8).
.TP
.B subordinate
Specify that the current backend database is a subordinate of another
struct berval alias, palias, nalias;
struct berval aliased, paliased, naliased;
+ if( 1 ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG( CONFIG, CRIT,
+ "%s: line %d: suffixAlias is no longer supported.\n"
+ fname, lineno, 0 );
+#else
+ Debug( LDAP_DEBUG_ANY,
+ "%s: line %d: suffixAlias is no longer supported.\n"
+ fname, lineno, 0 );
+#endif
+
+ return( 1 );
+ }
+
if ( cargc < 2 ) {
#ifdef NEW_LOGGING
LDAP_LOG( CONFIG, CRIT,