- djm@cvs.openbsd.org 2005/12/07 03:52:22

[clientloop.c]
     reyk forgot to compile with -Werror (missing header)
This commit is contained in:
Damien Miller 2005-12-13 19:29:36 +11:00
parent d27b947178
commit aeb31d6120
2 changed files with 6 additions and 2 deletions

View File

@ -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 $

View File

@ -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"