From: yasuoka Date: Mon, 1 Jul 2024 03:32:09 +0000 (+0000) Subject: Remove unused secret field from struct radiusd_authentication X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a3ca6f29f3173b8e20735e5002fb89712a570adb;p=openbsd Remove unused secret field from struct radiusd_authentication --- 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;