- 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:
parent
d27b947178
commit
aeb31d6120
|
@ -22,6 +22,9 @@
|
||||||
support for LocalCommand in the ssh(1) client.
|
support for LocalCommand in the ssh(1) client.
|
||||||
|
|
||||||
ok djm@, markus@, jmc@ (manpages), tested and discussed with others
|
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
|
20051201
|
||||||
- (djm) [envpass.sh] Remove regress script that was accidentally committed
|
- (djm) [envpass.sh] Remove regress script that was accidentally committed
|
||||||
|
@ -3414,4 +3417,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (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 $
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "ssh.h"
|
||||||
#include "ssh1.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 "log.h"
|
||||||
#include "readconf.h"
|
#include "readconf.h"
|
||||||
#include "clientloop.h"
|
#include "clientloop.h"
|
||||||
|
#include "sshconnect.h"
|
||||||
#include "authfd.h"
|
#include "authfd.h"
|
||||||
#include "atomicio.h"
|
#include "atomicio.h"
|
||||||
#include "sshpty.h"
|
#include "sshpty.h"
|
||||||
|
|
Loading…
Reference in New Issue