summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2026-03-27 01:25:18 +0100
committerGitHub <noreply@github.com>2026-03-27 01:25:18 +0100
commita71ce153082565e5728424749475593dc0623492 (patch)
tree45a2d49f86ab09f07e68f91bd88f9e3bc80201d4 /plugins
parent13e14a6bfd9f29cbfeab0c5161d2a994f97532e7 (diff)
downloadmonitoring-plugins-a71ce153082565e5728424749475593dc0623492.tar.gz
Handle rc_send_server in libfreeradius (#2246)HEADmaster
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_radius.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_radius.c b/plugins/check_radius.c
index 93352bcc..f20af660 100644
--- a/plugins/check_radius.c
+++ b/plugins/check_radius.c
@@ -62,6 +62,8 @@ void print_usage(void);
62# define my_rc_conf_str(a) rc_conf_str(rch, a) 62# define my_rc_conf_str(a) rc_conf_str(rch, a)
63# if defined(HAVE_LIBRADCLI) 63# if defined(HAVE_LIBRADCLI)
64# define my_rc_send_server(a, b) rc_send_server(rch, a, b, AUTH) 64# define my_rc_send_server(a, b) rc_send_server(rch, a, b, AUTH)
65# elif defined(HAVE_LIBFREERADIUS_CLIENT)
66# define my_rc_send_server(a, b) rc_send_server(rch, a, b, 0)
65# else 67# else
66# define my_rc_send_server(a, b) rc_send_server(rch, a, b) 68# define my_rc_send_server(a, b) rc_send_server(rch, a, b)
67# endif 69# endif