diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-07-01 03:32:10 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-07-01 03:32:10 +0000 |
commit | 2183e3373250941aa4d99b693d3b59080b1f2915 (patch) | |
tree | 1f5825d6ac28b5766dbbc8f8657278e4a8dfc14e | |
parent | 5531ce69c8fda2f0bf424fbb1782aacc3e729ee7 (diff) |
Remove unused secret field from struct radiusd_authentication
-rw-r--r-- | usr.sbin/radiusd/radiusd_local.h | 3 |
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; |