]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
error message on auth failed
authorAlan T. DeKok <aland@freeradius.org>
Thu, 9 Mar 2023 22:25:06 +0000 (17:25 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 9 Mar 2023 22:35:57 +0000 (17:35 -0500)
src/listen/bfd/session.c

index f97ec7787d5b222e22a46cb6937dfc3fd19691f1..eb4107b6a186597c9eba8134e6a5e847de7f5fac 100644 (file)
@@ -154,6 +154,7 @@ int bfd_session_process(proto_bfd_peer_t *session, bfd_packet_t *bfd)
        }
 
        if (bfd->auth_present && !bfd_authenticate(session, bfd)) {
+               DEBUG("BFD %s authentication failed", session->client.shortname);
                return 0;
        }