]> granicus.if.org Git - sudo/commitdiff
cleanup function no longer takes a status arg
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 6 Oct 1999 04:48:47 +0000 (04:48 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 6 Oct 1999 04:48:47 +0000 (04:48 +0000)
auth/API

index fcb2f1b6d3d91041d5064792d018d73b9246d4e0..4b336cc8c832dd1858003562fc3de65afb04bd75 100644 (file)
--- 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: