summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--sshd.c3
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index cfedf899f..56fb2fd44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,9 +6,13 @@
6 inherited by the child. ok djm@ 6 inherited by the child. ok djm@
7 - (dtucker) [auth-pam.c auth-pam.h auth1.c auth2.c monitor.c monitor_wrap.c 7 - (dtucker) [auth-pam.c auth-pam.h auth1.c auth2.c monitor.c monitor_wrap.c
8 monitor_wrap.h] Bug #808: Ensure force_pwchange is correctly initialized 8 monitor_wrap.h] Bug #808: Ensure force_pwchange is correctly initialized
9 even if keyboard-interactive is not used by the client. Prevents segfaults 9 even if keyboard-interactive is not used by the client. Prevents
10 in some cases where the user's password is expired (note this is not 10 segfaults in some cases where the user's password is expired (note this
11 considered a security exposure). ok djm@ 11 is not considered a security exposure). ok djm@
12 - (djm) OpenBSD CVS Sync
13 - markus@cvs.openbsd.org 2004/03/03 06:47:52
14 [sshd.c]
15 change proctiltle after accept(2); ok henning, deraadt, djm
12 16
1320040307 1720040307
14 - (tim) [regress/login-timeout.sh] fix building outside of source tree. 18 - (tim) [regress/login-timeout.sh] fix building outside of source tree.
@@ -869,4 +873,4 @@
869 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 873 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
870 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 874 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
871 875
872$Id: ChangeLog,v 1.3279 2004/03/08 12:04:06 dtucker Exp $ 876$Id: ChangeLog,v 1.3280 2004/03/08 12:11:25 djm Exp $
diff --git a/sshd.c b/sshd.c
index 3247091a4..9462bf0af 100644
--- a/sshd.c
+++ b/sshd.c
@@ -42,7 +42,7 @@
42 */ 42 */
43 43
44#include "includes.h" 44#include "includes.h"
45RCSID("$OpenBSD: sshd.c,v 1.287 2004/02/25 00:22:45 djm Exp $"); 45RCSID("$OpenBSD: sshd.c,v 1.288 2004/03/03 06:47:52 markus Exp $");
46 46
47#include <openssl/dh.h> 47#include <openssl/dh.h>
48#include <openssl/bn.h> 48#include <openssl/bn.h>
@@ -1390,6 +1390,7 @@ main(int ac, char **av)
1390 } 1390 }
1391 1391
1392 /* This is the child processing a new connection. */ 1392 /* This is the child processing a new connection. */
1393 setproctitle("%s", "[accepted]");
1393 1394
1394 /* 1395 /*
1395 * Create a new session and process group since the 4.4BSD 1396 * Create a new session and process group since the 4.4BSD