summaryrefslogtreecommitdiff
path: root/usr.sbin/radiusd
diff options
context:
space:
mode:
authorYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-01 03:32:10 +0000
committerYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-01 03:32:10 +0000
commit2183e3373250941aa4d99b693d3b59080b1f2915 (patch)
tree1f5825d6ac28b5766dbbc8f8657278e4a8dfc14e /usr.sbin/radiusd
parent5531ce69c8fda2f0bf424fbb1782aacc3e729ee7 (diff)
Remove unused secret field from struct radiusd_authentication
Diffstat (limited to 'usr.sbin/radiusd')
-rw-r--r--usr.sbin/radiusd/radiusd_local.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/radiusd/radiusd_local.h b/usr.sbin/radiusd/radiusd_local.h
index 7ead23e9d73..c3d1c805b58 100644
--- a/usr.sbin/radiusd/radiusd_local.h
+++ b/usr.sbin/radiusd/radiusd_local.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: radiusd_local.h,v 1.8 2024/07/01 03:31:29 yasuoka Exp $ */
+/* $OpenBSD: radiusd_local.h,v 1.9 2024/07/01 03:32:09 yasuoka Exp $ */
/*
* Copyright (c) 2013 Internet Initiative Japan Inc.
@@ -91,7 +91,6 @@ struct radiusd_module_ref {
struct radiusd_authentication {
char **username;
- char *secret;
struct radiusd_module_ref *auth;
TAILQ_HEAD(,radiusd_module_ref) deco;
TAILQ_ENTRY(radiusd_authentication) next;