diff options
author | Damien Miller <djm@mindrot.org> | 2003-01-22 05:42:26 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-01-22 05:42:26 +0100 |
commit | 2101bfc4e1dbe1dc475d71158b1c24c6d2e2e412 (patch) | |
tree | b9012d184941802b5f9fa188a3a530410513c755 /auth-sia.c | |
parent | - (djm) OpenBSD CVS Sync (diff) | |
download | openssh-2101bfc4e1dbe1dc475d71158b1c24c6d2e2e412.tar.xz openssh-2101bfc4e1dbe1dc475d71158b1c24c6d2e2e412.zip |
- (djm) Reorganise PAM & SIA password handling to eliminate some common code
Diffstat (limited to 'auth-sia.c')
-rw-r--r-- | auth-sia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-sia.c b/auth-sia.c index 58b17c16f..071e154d8 100644 --- a/auth-sia.c +++ b/auth-sia.c @@ -57,7 +57,7 @@ auth_sia_password(Authctxt *authctxt, char *pass) host = get_canonical_hostname(options.verify_reverse_mapping); - if (!user || !pass || pass[0] == '\0') + if (pass[0] == '\0') return(0); if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, NULL, 0, |