]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2003/02/06 09:26:23
authordjm <djm>
Mon, 24 Feb 2003 00:57:01 +0000 (00:57 +0000)
committerdjm <djm>
Mon, 24 Feb 2003 00:57:01 +0000 (00:57 +0000)
     [session.c]
     missing call to setproctitle() after authentication; ok provos@

ChangeLog
session.c

index 4742b2d50b9ab7846c9719eafec1d618ca98a774..a63241fbe88e77303ccafbfca214cc12114c9a06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 812681d0ff3ab1b8699030543f5e455f86baa1aa..c64240cf2828260d8fecae2c663ffa1b9de57e0d 100644 (file)
--- a/session.c
+++ b/session.c
@@ -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.
This page took 0.376635 seconds and 5 git commands to generate.