mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
ITS#1502: fix NS-MTA-MD5 typo
This commit is contained in:
parent
bbbf2f4ca7
commit
ba6d2c5cc0
1 changed files with 7 additions and 7 deletions
|
|
@ -125,8 +125,8 @@ static int chk_lanman(
|
||||||
const struct berval *cred );
|
const struct berval *cred );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef SLAPD_NT_MTA_MD5
|
#ifdef SLAPD_NS_MTA_MD5
|
||||||
static int chk_nt_mta_md5(
|
static int chk_ns_mta_md5(
|
||||||
const struct pw_scheme *scheme,
|
const struct pw_scheme *scheme,
|
||||||
const struct berval *passwd,
|
const struct berval *passwd,
|
||||||
const struct berval *cred );
|
const struct berval *cred );
|
||||||
|
|
@ -212,9 +212,9 @@ static const struct pw_scheme pw_schemes[] =
|
||||||
{ BER_BVC("{LANMAN}"), chk_lanman, hash_lanman },
|
{ BER_BVC("{LANMAN}"), chk_lanman, hash_lanman },
|
||||||
#endif /* SLAPD_LMHASH */
|
#endif /* SLAPD_LMHASH */
|
||||||
|
|
||||||
#ifdef SLAPD_NT_MTA_MD5
|
#ifdef SLAPD_NS_MTA_MD5
|
||||||
{ BER_BVC("{NT-MTA-MD5}"), chk_nt_mta_md5, NULL },
|
{ BER_BVC("{NS-MTA-MD5}"), chk_ns_mta_md5, NULL },
|
||||||
#endif /* SLAPD_NT_MTA_MD5 */
|
#endif /* SLAPD_NS_MTA_MD5 */
|
||||||
|
|
||||||
#ifdef SLAPD_SPASSWD
|
#ifdef SLAPD_SPASSWD
|
||||||
{ BER_BVC("{SASL}"), chk_sasl, NULL },
|
{ BER_BVC("{SASL}"), chk_sasl, NULL },
|
||||||
|
|
@ -637,8 +637,8 @@ static int chk_lanman(
|
||||||
}
|
}
|
||||||
#endif /* SLAPD_LMHASH */
|
#endif /* SLAPD_LMHASH */
|
||||||
|
|
||||||
#ifdef SLAPD_NT_MTA_MD5
|
#ifdef SLAPD_NS_MTA_MD5
|
||||||
static int chk_nt_mta_md5(
|
static int chk_ns_mta_md5(
|
||||||
const struct pw_scheme *scheme,
|
const struct pw_scheme *scheme,
|
||||||
const struct berval *passwd,
|
const struct berval *passwd,
|
||||||
const struct berval *cred )
|
const struct berval *cred )
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue