mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-25 19:32:09 +00:00
- markus@cvs.openbsd.org 2003/02/06 09:26:23
[session.c] missing call to setproctitle() after authentication; ok provos@
This commit is contained in:
parent
61f08ac35a
commit
97f39ae810
@ -42,6 +42,9 @@
|
||||
- markus@cvs.openbsd.org 2003/02/05 09:02:28
|
||||
[readconf.c]
|
||||
simplify ProxyCommand parsing, remove strcat/xrealloc; ok henning@, djm@
|
||||
- markus@cvs.openbsd.org 2003/02/06 09:26:23
|
||||
[session.c]
|
||||
missing call to setproctitle() after authentication; ok provos@
|
||||
|
||||
20030211
|
||||
- (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
|
||||
@ -1142,4 +1145,4 @@
|
||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||
ok provos@
|
||||
|
||||
$Id: ChangeLog,v 1.2604 2003/02/24 00:56:27 djm Exp $
|
||||
$Id: ChangeLog,v 1.2605 2003/02/24 00:57:01 djm Exp $
|
||||
|
@ -33,7 +33,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: session.c,v 1.152 2002/12/10 08:56:00 markus Exp $");
|
||||
RCSID("$OpenBSD: session.c,v 1.153 2003/02/06 09:26:23 markus Exp $");
|
||||
|
||||
#include "ssh.h"
|
||||
#include "ssh1.h"
|
||||
@ -201,6 +201,8 @@ auth_input_request_forwarding(struct passwd * pw)
|
||||
void
|
||||
do_authenticated(Authctxt *authctxt)
|
||||
{
|
||||
setproctitle("%s", authctxt->pw->pw_name);
|
||||
|
||||
/*
|
||||
* Cancel the alarm we set to limit the time taken for
|
||||
* authentication.
|
||||
|
Loading…
Reference in New Issue
Block a user