diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2005-12-07 03:52:23 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2005-12-07 03:52:23 +0000 |
commit | 0bd163e662ad92d4c7b75abace7fad3f53744a28 (patch) | |
tree | 3a00ac30d679b6135b4812fa5690eeece2da7164 | |
parent | c7d72b1ef876ee9584a89138013717a96f1ad0ec (diff) |
reyk forgot to compile with -Werror (missing header)
-rw-r--r-- | usr.bin/ssh/clientloop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index a97734c3f78..04f2d11bee3 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/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 @@ RCSID("$OpenBSD: clientloop.c,v 1.146 2005/12/06 22:38:27 reyk Exp $"); #include "log.h" #include "readconf.h" #include "clientloop.h" +#include "sshconnect.h" #include "authfd.h" #include "atomicio.h" #include "sshpty.h" |