mirror of git://anongit.mindrot.org/openssh.git
- (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
includes removed from includes.h
This commit is contained in:
parent
7a4cf232c9
commit
4b23f7c660
|
@ -265,7 +265,8 @@
|
||||||
[openbsd-compat/readpassphrase.c] Lots of include fixes for
|
[openbsd-compat/readpassphrase.c] Lots of include fixes for
|
||||||
OpenSolaris
|
OpenSolaris
|
||||||
- (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
|
- (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
|
||||||
warnings.
|
- (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
|
||||||
|
includes removed from includes.h
|
||||||
|
|
||||||
20060313
|
20060313
|
||||||
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
||||||
|
@ -4167,4 +4168,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.4219 2006/03/15 05:04:18 tim Exp $
|
$Id: ChangeLog,v 1.4220 2006/03/15 06:09:50 tim Exp $
|
||||||
|
|
|
@ -16,6 +16,9 @@
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <netinet/ip.h>
|
||||||
|
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "bufaux.h"
|
#include "bufaux.h"
|
||||||
|
|
1
sshpty.c
1
sshpty.c
|
@ -17,6 +17,7 @@ RCSID("$OpenBSD: sshpty.c,v 1.16 2006/02/20 17:19:54 stevesk Exp $");
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
#ifdef HAVE_PATHS_H
|
#ifdef HAVE_PATHS_H
|
||||||
# include <paths.h>
|
# include <paths.h>
|
||||||
|
|
Loading…
Reference in New Issue