- stevesk@cvs.openbsd.org 2006/02/10 00:27:13
[channels.c clientloop.c includes.h misc.c progressmeter.c sftp.c] [ssh.c sshd.c sshpty.c] move #include <sys/ioctl.h> out of includes.h; ok markus@
This commit is contained in:
parent
c47d7e9e19
commit
17e91c0fb0
|
@ -58,6 +58,10 @@
|
|||
[sshd.8]
|
||||
- move some text into a CAVEATS section
|
||||
- merge the COMMAND EXECUTION... section into AUTHENTICATION
|
||||
- stevesk@cvs.openbsd.org 2006/02/10 00:27:13
|
||||
[channels.c clientloop.c includes.h misc.c progressmeter.c sftp.c]
|
||||
[ssh.c sshd.c sshpty.c]
|
||||
move #include <sys/ioctl.h> out of includes.h; ok markus@
|
||||
|
||||
20060313
|
||||
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
||||
|
@ -3959,4 +3963,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.4156 2006/03/15 00:27:20 djm Exp $
|
||||
$Id: ChangeLog,v 1.4157 2006/03/15 00:28:34 djm Exp $
|
||||
|
|
|
@ -39,7 +39,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: channels.c,v 1.233 2006/02/07 01:42:00 stevesk Exp $");
|
||||
RCSID("$OpenBSD: channels.c,v 1.234 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include <termios.h>
|
||||
|
||||
|
|
|
@ -59,7 +59,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: clientloop.c,v 1.151 2006/02/08 12:15:27 stevesk Exp $");
|
||||
RCSID("$OpenBSD: clientloop.c,v 1.152 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include <paths.h>
|
||||
#include <termios.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: includes.h,v 1.31 2006/02/09 00:32:07 stevesk Exp $ */
|
||||
/* $OpenBSD: includes.h,v 1.32 2006/02/10 00:27:13 stevesk Exp $ */
|
||||
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
|
@ -92,7 +92,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
|
|||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/wait.h>
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
# include <sys/time.h> /* For timersub */
|
||||
|
|
5
misc.c
5
misc.c
|
@ -24,8 +24,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: misc.c,v 1.44 2006/02/08 12:32:49 stevesk Exp $");
|
||||
|
||||
RCSID("$OpenBSD: misc.c,v 1.45 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
#include <netinet/tcp.h>
|
||||
#ifdef HAVE_PATHS_H
|
||||
# include <paths.h>
|
||||
|
|
|
@ -23,7 +23,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: progressmeter.c,v 1.24 2005/06/07 13:25:23 jaredy Exp $");
|
||||
RCSID("$OpenBSD: progressmeter.c,v 1.25 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include "progressmeter.h"
|
||||
#include "atomicio.h"
|
||||
|
|
3
sftp.c
3
sftp.c
|
@ -15,8 +15,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: sftp.c,v 1.72 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
RCSID("$OpenBSD: sftp.c,v 1.71 2006/02/08 12:15:27 stevesk Exp $");
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#ifdef HAVE_PATHS_H
|
||||
# include <paths.h>
|
||||
|
|
3
ssh.c
3
ssh.c
|
@ -40,9 +40,10 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: ssh.c,v 1.259 2006/02/08 14:31:30 stevesk Exp $");
|
||||
RCSID("$OpenBSD: ssh.c,v 1.260 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/resource.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include <paths.h>
|
||||
|
||||
|
|
4
sshd.c
4
sshd.c
|
@ -42,7 +42,9 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: sshd.c,v 1.319 2006/02/08 12:15:27 stevesk Exp $");
|
||||
RCSID("$OpenBSD: sshd.c,v 1.320 2006/02/10 00:27:13 stevesk Exp $");
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
#include <paths.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue