From: Todd C. Miller Date: Wed, 6 Oct 1999 04:48:47 +0000 (+0000) Subject: cleanup function no longer takes a status arg X-Git-Tag: SUDO_1_6_0~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c832accc144d5a42730b62f0cdfd36818823a8cf;p=sudo cleanup function no longer takes a status arg --- 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: