- stevesk@cvs.openbsd.org 2006/02/08 12:32:49
[includes.h misc.c] move #include <netinet/tcp.h> out of includes.h; ok markus@
This commit is contained in:
parent
a9263d065d
commit
3a4051e88b
|
@ -31,6 +31,9 @@
|
||||||
[session.c sftp.c ssh-agent.c ssh-keysign.c ssh.c sshconnect.c]
|
[session.c sftp.c ssh-agent.c ssh-keysign.c ssh.c sshconnect.c]
|
||||||
[sshd.c sshpty.c]
|
[sshd.c sshpty.c]
|
||||||
move #include <paths.h> out of includes.h; ok markus@
|
move #include <paths.h> out of includes.h; ok markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2006/02/08 12:32:49
|
||||||
|
[includes.h misc.c]
|
||||||
|
move #include <netinet/tcp.h> out of includes.h; ok markus@
|
||||||
|
|
||||||
20060313
|
20060313
|
||||||
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
||||||
|
@ -3932,4 +3935,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.4148 2006/03/15 00:16:59 djm Exp $
|
$Id: ChangeLog,v 1.4149 2006/03/15 00:19:42 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: includes.h,v 1.26 2006/02/08 12:15:27 stevesk Exp $ */
|
/* $OpenBSD: includes.h,v 1.27 2006/02/08 12:32:49 stevesk Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
@ -140,7 +140,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
|
||||||
#include <netinet/in_systm.h> /* For typedefs */
|
#include <netinet/in_systm.h> /* For typedefs */
|
||||||
#include <netinet/in.h> /* For IPv6 macros */
|
#include <netinet/in.h> /* For IPv6 macros */
|
||||||
#include <netinet/ip.h> /* For IPTOS macros */
|
#include <netinet/ip.h> /* For IPTOS macros */
|
||||||
#include <netinet/tcp.h>
|
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#if defined(HAVE_NETDB_H)
|
#if defined(HAVE_NETDB_H)
|
||||||
# include <netdb.h>
|
# include <netdb.h>
|
||||||
|
|
5
misc.c
5
misc.c
|
@ -24,8 +24,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: misc.c,v 1.43 2006/02/08 12:15:27 stevesk Exp $");
|
RCSID("$OpenBSD: misc.c,v 1.44 2006/02/08 12:32:49 stevesk Exp $");
|
||||||
|
|
||||||
|
#include <netinet/tcp.h>
|
||||||
#ifdef HAVE_PATHS_H
|
#ifdef HAVE_PATHS_H
|
||||||
# include <paths.h>
|
# include <paths.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue