Skip to content

Commit

Permalink
- (dtucker) [auth2.c] Move start_pam() calls out of if-else block to…
Browse files Browse the repository at this point in the history
… remove

   duplicate call.  ok djm@
  • Loading branch information
daztucker committed Sep 24, 2005
1 parent 82171c6 commit d3eff2b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
20050924
- (dtucker) [auth2.c] Move start_pam() calls out of if-else block to remove
duplicate call. ok djm@

20050922
- (dtucker) [configure.ac] Use -R linker flag for libedit too; patch from
skeleten at shillest.net.
Expand Down Expand Up @@ -3009,4 +3013,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu

$Id: ChangeLog,v 1.3893 2005/09/22 10:19:54 dtucker Exp $
$Id: ChangeLog,v 1.3894 2005/09/24 02:43:51 dtucker Exp $
12 changes: 4 additions & 8 deletions auth2.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,21 +156,17 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt)
if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
authctxt->valid = 1;
debug2("input_userauth_request: setting up authctxt for %s", user);
#ifdef USE_PAM
if (options.use_pam)
PRIVSEP(start_pam(authctxt));
#endif
} else {
logit("input_userauth_request: invalid user %s", user);
authctxt->pw = fakepw();
#ifdef USE_PAM
if (options.use_pam)
PRIVSEP(start_pam(authctxt));
#endif
#ifdef SSH_AUDIT_EVENTS
PRIVSEP(audit_event(SSH_INVALID_USER));
#endif
}
#ifdef USE_PAM
if (options.use_pam)
PRIVSEP(start_pam(authctxt));
#endif
setproctitle("%s%s", authctxt->valid ? user : "unknown",
use_privsep ? " [net]" : "");
authctxt->service = xstrdup(service);
Expand Down

0 comments on commit d3eff2b

Please sign in to comment.