summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--ssh-keygen.c2
-rw-r--r--sshconnect1.c2
-rw-r--r--sshd.c2
4 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b17401d61..f963980f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,14 @@
14 - djm@cvs.openbsd.org 2013/08/31 00:13:54 14 - djm@cvs.openbsd.org 2013/08/31 00:13:54
15 [sftp.c] 15 [sftp.c]
16 make ^w match ksh behaviour (delete previous word instead of entire line) 16 make ^w match ksh behaviour (delete previous word instead of entire line)
17 - deraadt@cvs.openbsd.org 2013/09/02 22:00:34
18 [ssh-keygen.c sshconnect1.c sshd.c]
19 All the instances of arc4random_stir() are bogus, since arc4random()
20 does this itself, inside itself, and has for a very long time.. Actually,
21 this was probably reducing the entropy available.
22 ok djm
23 ID SYNC ONLY for portable; we don't trust other arc4random implementations
24 to do this right.
17 25
1820130828 2620130828
19 - (djm) [openbsd-compat/bsd-snprintf.c] teach our local snprintf code the 27 - (djm) [openbsd-compat/bsd-snprintf.c] teach our local snprintf code the
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 9c19f00d0..b8d55452d 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-keygen.c,v 1.233 2013/08/28 12:34:27 mikeb Exp $ */ 1/* $OpenBSD: ssh-keygen.c,v 1.234 2013/09/02 22:00:34 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
diff --git a/sshconnect1.c b/sshconnect1.c
index d285e23c0..f4b890773 100644
--- a/sshconnect1.c
+++ b/sshconnect1.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect1.c,v 1.71 2013/05/17 00:13:14 djm Exp $ */ 1/* $OpenBSD: sshconnect1.c,v 1.72 2013/09/02 22:00:34 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
diff --git a/sshd.c b/sshd.c
index cddc87e8d..3efe170e0 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.405 2013/08/22 19:02:21 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.406 2013/09/02 22:00:34 deraadt Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland