- djm@cvs.openbsd.org 2005/12/07 03:52:22
     [clientloop.c]
     reyk forgot to compile with -Werror (missing header)
diff --git a/ChangeLog b/ChangeLog
index 96ed9a0..337f700 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,9 @@
      support for LocalCommand in the ssh(1) client.
 
      ok djm@, markus@, jmc@ (manpages), tested and discussed with others
+   - djm@cvs.openbsd.org 2005/12/07 03:52:22
+     [clientloop.c]
+     reyk forgot to compile with -Werror (missing header)
 
 20051201
  - (djm) [envpass.sh] Remove regress script that was accidentally committed 
@@ -3414,4 +3417,4 @@
    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
 
-$Id: ChangeLog,v 1.4019 2005/12/13 08:29:02 djm Exp $
+$Id: ChangeLog,v 1.4020 2005/12/13 08:29:36 djm Exp $
diff --git a/clientloop.c b/clientloop.c
index a97734c..04f2d11 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: clientloop.c,v 1.146 2005/12/06 22:38:27 reyk Exp $");
+RCSID("$OpenBSD: clientloop.c,v 1.147 2005/12/07 03:52:22 djm Exp $");
 
 #include "ssh.h"
 #include "ssh1.h"
@@ -77,6 +77,7 @@
 #include "log.h"
 #include "readconf.h"
 #include "clientloop.h"
+#include "sshconnect.h"
 #include "authfd.h"
 #include "atomicio.h"
 #include "sshpty.h"