From 7a93a4aa75d4f3a0d19fc94531316afa218b40dc Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 29 Oct 2000 22:30:22 +0000 Subject: [PATCH] minor housekeeping, no real code changes --- auth/pam.c | 2 +- auth/sudo_auth.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/auth/pam.c b/auth/pam.c index 539db31ec..01f455b41 100644 --- a/auth/pam.c +++ b/auth/pam.c @@ -106,7 +106,7 @@ pam_verify(pw, prompt, auth) /* Any error other than PAM_AUTH_ERR or PAM_MAXTRIES is probably fatal. */ if (error != PAM_AUTH_ERR && error != PAM_MAXTRIES) { if ((s = pam_strerror(pamh, error))) - log_error(NO_EXIT|NO_MAIL, "pam_authenticate: %s\n", s); + log_error(NO_EXIT|NO_MAIL, "pam_authenticate: %s", s); return(AUTH_FATAL); } return(AUTH_FAILURE); diff --git a/auth/sudo_auth.h b/auth/sudo_auth.h index 3d8ff68c7..e964ff05c 100644 --- a/auth/sudo_auth.h +++ b/auth/sudo_auth.h @@ -119,12 +119,12 @@ int securid_verify __P((struct passwd *pw, char *pass, sudo_auth *auth)); NULL, NULL, aixauth_verify, NULL) #elif defined(HAVE_FWTK) # define AUTH_STANDALONE \ - AUTH_ENTRY(0, "fwtk", fwtk_init, \ - NULL, fwtk_verify, fwtk_cleanup) + AUTH_ENTRY(0, "fwtk", \ + fwtk_init, NULL, fwtk_verify, fwtk_cleanup) #elif defined(HAVE_BSD_AUTH_H) # define AUTH_STANDALONE \ - AUTH_ENTRY(0, "bsdauth", bsdauth_init, \ - NULL, bsdauth_verify, bsdauth_cleanup) + AUTH_ENTRY(0, "bsdauth", \ + bsdauth_init, NULL, bsdauth_verify, bsdauth_cleanup) #endif #endif /* SUDO_AUTH_H */ -- 2.50.1