diff options
author | Damien Miller <djm@mindrot.org> | 2003-04-29 23:22:40 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-04-29 23:22:40 +1000 |
commit | eab4bae03894f07ea556db4d781795c724245af7 (patch) | |
tree | 30289e5ea867bf4e9246b6a5bfe2f31f664dedc3 /auth2-none.c | |
parent | 0e7f4363f3d7b2ae707709607fd816f663c7449a (diff) |
- (djm) Add back radix.o (used by AFS support), after it went missing from
Makefile many moons ago
- (djm) Apply "owl-always-auth" patch from Openwall/Solar Designer
- (djm) Fix blibpath specification for AIX/gcc
- (djm) Some systems have basename in -lgen. Fix from ayamura@ayamura.org
Diffstat (limited to 'auth2-none.c')
-rw-r--r-- | auth2-none.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth2-none.c b/auth2-none.c index c07b2dd81..692a2961f 100644 --- a/auth2-none.c +++ b/auth2-none.c | |||
@@ -100,7 +100,7 @@ userauth_none(Authctxt *authctxt) | |||
100 | if (check_nt_auth(1, authctxt->pw) == 0) | 100 | if (check_nt_auth(1, authctxt->pw) == 0) |
101 | return(0); | 101 | return(0); |
102 | #endif | 102 | #endif |
103 | return (authctxt->valid ? PRIVSEP(auth_password(authctxt, "")) : 0); | 103 | return PRIVSEP(auth_password(authctxt, "")) && authctxt->valid; |
104 | } | 104 | } |
105 | 105 | ||
106 | Authmethod method_none = { | 106 | Authmethod method_none = { |