summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-12-13 19:29:36 +1100
committerDamien Miller <djm@mindrot.org>2005-12-13 19:29:36 +1100
commitaeb31d6120681f42ad1b91adc5352159a6a5d345 (patch)
tree5aceeb57e155124fe83ae5cb514cef2542842b93
parentd27b947178df3689bfb7fdfb62a5f1337ef73481 (diff)
- djm@cvs.openbsd.org 2005/12/07 03:52:22
[clientloop.c] reyk forgot to compile with -Werror (missing header)
-rw-r--r--ChangeLog5
-rw-r--r--clientloop.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 96ed9a05d..337f70086 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,9 @@
22 support for LocalCommand in the ssh(1) client. 22 support for LocalCommand in the ssh(1) client.
23 23
24 ok djm@, markus@, jmc@ (manpages), tested and discussed with others 24 ok djm@, markus@, jmc@ (manpages), tested and discussed with others
25 - djm@cvs.openbsd.org 2005/12/07 03:52:22
26 [clientloop.c]
27 reyk forgot to compile with -Werror (missing header)
25 28
2620051201 2920051201
27 - (djm) [envpass.sh] Remove regress script that was accidentally committed 30 - (djm) [envpass.sh] Remove regress script that was accidentally committed
@@ -3414,4 +3417,4 @@
3414 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3417 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3415 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3418 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3416 3419
3417$Id: ChangeLog,v 1.4019 2005/12/13 08:29:02 djm Exp $ 3420$Id: ChangeLog,v 1.4020 2005/12/13 08:29:36 djm Exp $
diff --git a/clientloop.c b/clientloop.c
index a97734c3f..04f2d11be 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,7 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.146 2005/12/06 22:38:27 reyk Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.147 2005/12/07 03:52:22 djm Exp $");
63 63
64#include "ssh.h" 64#include "ssh.h"
65#include "ssh1.h" 65#include "ssh1.h"
@@ -77,6 +77,7 @@ RCSID("$OpenBSD: clientloop.c,v 1.146 2005/12/06 22:38:27 reyk Exp $");
77#include "log.h" 77#include "log.h"
78#include "readconf.h" 78#include "readconf.h"
79#include "clientloop.h" 79#include "clientloop.h"
80#include "sshconnect.h"
80#include "authfd.h" 81#include "authfd.h"
81#include "atomicio.h" 82#include "atomicio.h"
82#include "sshpty.h" 83#include "sshpty.h"