summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-09-27 13:22:31 +1000
committerDamien Miller <djm@mindrot.org>2002-09-27 13:22:31 +1000
commitd27a76de65d557e36420046e44a014d3190f89cb (patch)
tree89194095c6c15495d8ef07e33fa5a3a5641d9bc5
parentd681d2602c87f7652a84b43f3521c4b06731e844 (diff)
- markus@cvs.openbsd.org 2002/09/25 15:19:02
[sshd.c] typo; pilot@monkey.org
-rw-r--r--ChangeLog5
-rw-r--r--sshd.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b5e3f2ed1..3f62f5740 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - markus@cvs.openbsd.org 2002/09/25 11:17:16 3 - markus@cvs.openbsd.org 2002/09/25 11:17:16
4 [sshd_config] 4 [sshd_config]
5 sync LoginGraceTime with default 5 sync LoginGraceTime with default
6 - markus@cvs.openbsd.org 2002/09/25 15:19:02
7 [sshd.c]
8 typo; pilot@monkey.org
6 9
720020925 1020020925
8 - (bal) Fix issue where successfull login does not clear failure counts 11 - (bal) Fix issue where successfull login does not clear failure counts
@@ -727,4 +730,4 @@
727 save auth method before monitor_reset_key_state(); bugzilla bug #284; 730 save auth method before monitor_reset_key_state(); bugzilla bug #284;
728 ok provos@ 731 ok provos@
729 732
730$Id: ChangeLog,v 1.2483 2002/09/27 03:21:57 djm Exp $ 733$Id: ChangeLog,v 1.2484 2002/09/27 03:22:31 djm Exp $
diff --git a/sshd.c b/sshd.c
index 37026dc2e..986c71273 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.258 2002/09/13 19:23:09 stevesk Exp $"); 45RCSID("$OpenBSD: sshd.c,v 1.259 2002/09/25 15:19:02 markus Exp $");
46 46
47#include <openssl/dh.h> 47#include <openssl/dh.h>
48#include <openssl/bn.h> 48#include <openssl/bn.h>
@@ -304,7 +304,7 @@ grace_alarm_handler(int sig)
304 /* XXX no idea how fix this signal handler */ 304 /* XXX no idea how fix this signal handler */
305 305
306 /* Log error and exit. */ 306 /* Log error and exit. */
307 fatal("Timeout before authentication for %s.", get_remote_ipaddr()); 307 fatal("Timeout before authentication for %s", get_remote_ipaddr());
308} 308}
309 309
310/* 310/*