From c832accc144d5a42730b62f0cdfd36818823a8cf Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 6 Oct 1999 04:48:47 +0000 Subject: [PATCH] cleanup function no longer takes a status arg --- auth/API | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/API b/auth/API index fcb2f1b6d..4b336cc8c 100644 --- a/auth/API +++ b/auth/API @@ -15,7 +15,7 @@ typedef struct sudo_auth { int (*init) __P((struct passwd *pw, char **prompt, sudo_auth *auth)); int (*setup) __P((struct passwd *pw, char **prompt, sudo_auth *auth)); int (*verify) __P((struct passwd *pw, char *p, sudo_auth *auth)); - int (*cleanup) __P((struct passwd *pw, int status, sudo_auth *auth)); + int (*cleanup) __P((struct passwd *pw, sudo_auth *auth)); } sudo_auth; The variables in the struct are as follows: -- 2.40.0