2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

add SIA support

This commit is contained in:
Todd C. Miller
1998-10-19 00:22:38 +00:00
parent 31d783ac87
commit 1dffdd17c3
6 changed files with 44 additions and 10 deletions

View File

@@ -159,11 +159,13 @@ void check_user()
if (rtn == 2)
reminder(); /* do the reminder if ticket file is new */
#endif /* NO_MESSAGE */
#ifdef HAVE_PAM
#ifdef HAVE_SIA
sia_attempt_auth();
#elif HAVE_PAM
pam_attempt_auth();
#else /* !HAVE_PAM */
#else /* !HAVE_SIA && !HAVE_PAM */
check_passwd();
#endif /* HAVE_PAM */
#endif /* HAVE_SIA */
}
update_timestamp();