]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix warning messages
authorAlan T. DeKok <aland@freeradius.org>
Thu, 17 Aug 2023 14:10:44 +0000 (10:10 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 17 Aug 2023 16:59:56 +0000 (12:59 -0400)
src/modules/rlm_ldap/ldap.c

index 50fefdb3e4c3be94965c4811d61dc5087b6eb54f..fdbb6e1a01d752e536fe445c9fb251ac4f8dd4b2 100644 (file)
@@ -1291,8 +1291,9 @@ void rlm_ldap_check_reply(rlm_ldap_t const *inst, REQUEST *request)
                    !fr_pair_find_by_num(request->config, PW_CRYPT_PASSWORD, 0, TAG_ANY)) {
                        RWDEBUG("No \"known good\" password added. Ensure the admin user has permission to "
                                "read the password attribute");
-                       RWDEBUG("PAP authentication will *NOT* work with Active Directory (if that is what you "
+                       RWDEBUG("CHAP / MS-CHAP authentication will *NOT* work with Active Directory (if that is what you "
                                "were trying to configure)");
+                       RWDEBUG("PAP authentication to Active Directory *MUST* use LDAP 'bind as user' functionality");
                }
        }
 }