summaryrefslogtreecommitdiff
path: root/usr.bin/sudo/auth/passwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/sudo/auth/passwd.c')
-rw-r--r--usr.bin/sudo/auth/passwd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sudo/auth/passwd.c b/usr.bin/sudo/auth/passwd.c
index 92b6a3efa79..98a9fdb6889 100644
--- a/usr.bin/sudo/auth/passwd.c
+++ b/usr.bin/sudo/auth/passwd.c
@@ -61,7 +61,7 @@
#include "sudo_auth.h"
#ifndef lint
-static const char rcsid[] = "$Sudo: passwd.c,v 1.9 2001/12/14 19:52:53 millert Exp $";
+static const char rcsid[] = "$Sudo: passwd.c,v 1.11 2002/01/17 15:56:15 millert Exp $";
#endif /* lint */
#define DESLEN 13
@@ -74,8 +74,8 @@ passwd_init(pw, promptp, auth)
sudo_auth *auth;
{
#ifdef HAVE_SKEYACCESS
- if (skeyaccess(pw->pw_name, user_tty, NULL, NULL) == 0)
- return(AUTH_FATAL);
+ if (skeyaccess(pw, user_tty, NULL, NULL) == 0)
+ return(AUTH_FAILURE);
#endif
return(AUTH_SUCCESS);
}