summaryrefslogtreecommitdiff
path: root/usr.sbin/radiusd
diff options
context:
space:
mode:
authorYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-17 10:15:40 +0000
committerYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-17 10:15:40 +0000
commitf4aa624fed98f8675085d4c48ba41e90a5f84237 (patch)
treec727c0db855afd6b8f57dcb033e016ccfd682c6f /usr.sbin/radiusd
parent818f05dc2417fb12d90b1b15b62433f155af6341 (diff)
Delete log_info() line for debug.
Diffstat (limited to 'usr.sbin/radiusd')
-rw-r--r--usr.sbin/radiusd/radiusd_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/radiusd/radiusd_file.c b/usr.sbin/radiusd/radiusd_file.c
index 1f6e4688368..c140e081752 100644
--- a/usr.sbin/radiusd/radiusd_file.c
+++ b/usr.sbin/radiusd/radiusd_file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: radiusd_file.c,v 1.2 2024/07/14 15:13:41 yasuoka Exp $ */
+/* $OpenBSD: radiusd_file.c,v 1.3 2024/07/17 10:15:39 yasuoka Exp $ */
/*
* Copyright (c) 2024 YASUOKA Masahiko <yasuoka@yasuoka.net>
@@ -405,7 +405,6 @@ auth_pap(struct module_file *self, u_int q_id, RADIUS_PACKET *radpkt,
return;
}
ret = strcmp(ent->password, pass);
- log_info("%s %s", ent->password, pass);
explicit_bzero(ent->password, strlen(ent->password));
log_info("q=%u User `%s' authentication %s (PAP)", q_id, username,
(ret == 0)? "succeeded" : "failed");