]> git.sur5r.net Git - openldap/commitdiff
ITS#1502: fix NS-MTA-MD5 typo
authorKurt Zeilenga <kurt@openldap.org>
Tue, 24 Sep 2002 21:21:35 +0000 (21:21 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 24 Sep 2002 21:21:35 +0000 (21:21 +0000)
libraries/liblutil/passwd.c

index 50f526f04e0563933cd4d8d36a08c35e9857d5e2..a2235c45f53d0a65934d82831111895394d55882 100644 (file)
@@ -125,8 +125,8 @@ static int chk_lanman(
        const struct berval *cred );
 #endif
 
-#ifdef SLAPD_NT_MTA_MD5
-static int chk_nt_mta_md5(
+#ifdef SLAPD_NS_MTA_MD5
+static int chk_ns_mta_md5(
        const struct pw_scheme *scheme,
        const struct berval *passwd,
        const struct berval *cred );
@@ -212,9 +212,9 @@ static const struct pw_scheme pw_schemes[] =
        { BER_BVC("{LANMAN}"),          chk_lanman, hash_lanman },
 #endif /* SLAPD_LMHASH */
 
-#ifdef SLAPD_NT_MTA_MD5
-       { BER_BVC("{NT-MTA-MD5}"),      chk_nt_mta_md5, NULL },
-#endif /* SLAPD_NT_MTA_MD5 */
+#ifdef SLAPD_NS_MTA_MD5
+       { BER_BVC("{NS-MTA-MD5}"),      chk_ns_mta_md5, NULL },
+#endif /* SLAPD_NS_MTA_MD5 */
 
 #ifdef SLAPD_SPASSWD
        { BER_BVC("{SASL}"),            chk_sasl, NULL },
@@ -637,8 +637,8 @@ static int chk_lanman(
 }
 #endif /* SLAPD_LMHASH */
 
-#ifdef SLAPD_NT_MTA_MD5
-static int chk_nt_mta_md5(
+#ifdef SLAPD_NS_MTA_MD5
+static int chk_ns_mta_md5(
        const struct pw_scheme *scheme,
        const struct berval *passwd,
        const struct berval *cred )