From: Pierangelo Masarati Date: Sat, 8 Mar 2003 11:01:02 +0000 (+0000) Subject: LDAP_INVALID_DN is undefined; use LDAP_INVALID_DN_SYNTAX instead X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04382bb204dffd62a1edd0faf685f63895d7b6eb;p=thirdparty%2Fopenldap.git LDAP_INVALID_DN is undefined; use LDAP_INVALID_DN_SYNTAX instead --- diff --git a/servers/slapd/back-ldbm/modrdn.c b/servers/slapd/back-ldbm/modrdn.c index 9df746d9b4..ceec47055e 100644 --- a/servers/slapd/back-ldbm/modrdn.c +++ b/servers/slapd/back-ldbm/modrdn.c @@ -377,7 +377,7 @@ ldbm_back_modrdn( "ldbm_back_modrdn: can't figure out type(s)/value(s) of newrdn\n", 0, 0, 0 ); - send_ldap_result( conn, op, LDAP_INVALID_DN, + send_ldap_result( conn, op, LDAP_INVALID_DN_SYNTAX, NULL, "unable to parse type(s)/value(s) used in RDN", NULL, NULL ); goto return_results; }