]> andersk Git - openssh.git/commitdiff
- (djm) OpenBSD CVS Sync
authordjm <djm>
Mon, 8 Mar 2004 12:11:25 +0000 (12:11 +0000)
committerdjm <djm>
Mon, 8 Mar 2004 12:11:25 +0000 (12:11 +0000)
   - markus@cvs.openbsd.org 2004/03/03 06:47:52
     [sshd.c]
     change proctiltle after accept(2); ok henning, deraadt, djm

ChangeLog
sshd.c

index 7936103d16f82f25b75e23c854b9dca996b12203..2563e9c1ebdc98f0fc468e5e346f8377824ce3b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,9 +6,13 @@
    inherited by the child.  ok djm@
  - (dtucker) [auth-pam.c auth-pam.h auth1.c auth2.c monitor.c monitor_wrap.c
    monitor_wrap.h] Bug #808: Ensure force_pwchange is correctly initialized
-   even if keyboard-interactive is not used by the client.  Prevents segfaults
-   in some cases where the user's password is expired (note this is not
-   considered a security exposure).  ok djm@
+   even if keyboard-interactive is not used by the client.  Prevents 
+   segfaults in some cases where the user's password is expired (note this 
+   is not considered a security exposure).  ok djm@
+ - (djm) OpenBSD CVS Sync
+   - markus@cvs.openbsd.org 2004/03/03 06:47:52
+     [sshd.c]
+     change proctiltle after accept(2); ok henning, deraadt, djm
 
 20040307
  - (tim) [regress/login-timeout.sh] fix building outside of source tree.
diff --git a/sshd.c b/sshd.c
index 3247091a4c1fd6ccba844d142d5a01f440138aa7..9462bf0af185ed78a641543f3aeb947c5f3e9296 100644 (file)
--- a/sshd.c
+++ b/sshd.c
@@ -42,7 +42,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.287 2004/02/25 00:22:45 djm Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.288 2004/03/03 06:47:52 markus Exp $");
 
 #include <openssl/dh.h>
 #include <openssl/bn.h>
@@ -1390,6 +1390,7 @@ main(int ac, char **av)
        }
 
        /* This is the child processing a new connection. */
+       setproctitle("%s", "[accepted]");
 
        /*
         * Create a new session and process group since the 4.4BSD
This page took 0.045412 seconds and 5 git commands to generate.