From: Pierangelo Masarati Date: Sat, 9 Jun 2007 15:29:46 +0000 (+0000) Subject: autchId must be a (quoted) id, and can't be a DN; as a consequence, no need for leadi... X-Git-Tag: OPENLDAP_REL_ENG_2_4_MP~410 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ecb6db13dc76e073283b9fd584c194f4f7c4f683;p=openldap autchId must be a (quoted) id, and can't be a DN; as a consequence, no need for leading 'u:' --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index b4917de41c..2d475d2006 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1037,7 +1037,7 @@ static slap_cf_aux_table bindkey[] = { { BER_BVC("saslmech="), offsetof(slap_bindconf, sb_saslmech), 'b', 0, NULL }, { BER_BVC("secprops="), offsetof(slap_bindconf, sb_secprops), 's', 0, NULL }, { BER_BVC("realm="), offsetof(slap_bindconf, sb_realm), 'b', 0, NULL }, - { BER_BVC("authcID="), offsetof(slap_bindconf, sb_authcId), 'b', 0, (slap_verbmasks *)authzNormalize }, + { BER_BVC("authcID="), offsetof(slap_bindconf, sb_authcId), 'b', 1, NULL }, { BER_BVC("authzID="), offsetof(slap_bindconf, sb_authzId), 'b', 1, (slap_verbmasks *)authzNormalize }, #ifdef HAVE_TLS { BER_BVC("starttls="), offsetof(slap_bindconf, sb_tls), 'i', 0, tlskey },