From: Todd C. Miller Date: Fri, 27 Aug 1999 14:54:52 +0000 (+0000) Subject: _cleanup() function returns an int. X-Git-Tag: SUDO_1_6_0~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5fc92121177706586954d023a36db13ccefb446;p=sudo _cleanup() function returns an int. --- diff --git a/auth/fwtk.c b/auth/fwtk.c index 9e80c63cc..f002af97a 100644 --- a/auth/fwtk.c +++ b/auth/fwtk.c @@ -151,4 +151,5 @@ fwtk_cleanup(pw, auth) { auth_close(); + return(AUTH_SUCCESS); } diff --git a/auth/sia.c b/auth/sia.c index 8420c3fa7..e399822b4 100644 --- a/auth/sia.c +++ b/auth/sia.c @@ -143,4 +143,5 @@ sia_cleanup(pw, auth) SIAENTITY *siah = (SIAENTITY *) auth->data; (void) sia_ses_release(&siah); + return(AUTH_SUCCESS); }