From 3297ffa26737ef6c183b59eaf092fb5ba9ee407c Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 31 Oct 2023 10:26:57 -0600 Subject: [PATCH] sudo_sia_begin_session: add missing struct sudoers_context * arg. --- plugins/sudoers/auth/sia.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/sudoers/auth/sia.c b/plugins/sudoers/auth/sia.c index 924ca7387..9c550717f 100644 --- a/plugins/sudoers/auth/sia.c +++ b/plugins/sudoers/auth/sia.c @@ -119,7 +119,8 @@ sudo_sia_cleanup(const struct sudoers_context *ctx, struct passwd *pw, } int -sudo_sia_begin_session(struct passwd *pw, char **user_envp[], sudo_auth *auth) +sudo_sia_begin_session(const struct sudoers_context *ctx, struct passwd *pw, + char **user_envp[], sudo_auth *auth) { SIAENTITY *siah; int status = AUTH_ERROR;