From c5fc92121177706586954d023a36db13ccefb446 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 27 Aug 1999 14:54:52 +0000 Subject: [PATCH] _cleanup() function returns an int. --- auth/fwtk.c | 1 + auth/sia.c | 1 + 2 files changed, 2 insertions(+) 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); } -- 2.40.0