[includes.h scp.c sftp-glob.c sftp-server.c]
     move #include <dirent.h> out of includes.h; ok markus@
This commit is contained in:
Damien Miller 2006-03-15 11:25:13 +11:00
parent 68f8e992bf
commit 88f254b9a5
5 changed files with 14 additions and 6 deletions

View File

@ -47,6 +47,9 @@
[includes.h packet.c]
move #include <netinet/in_systm.h> and <netinet/ip.h> out of
includes.h; ok markus@
- stevesk@cvs.openbsd.org 2006/02/08 23:51:24
[includes.h scp.c sftp-glob.c sftp-server.c]
move #include <dirent.h> out of includes.h; ok markus@
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@ -3948,4 +3951,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.4153 2006/03/15 00:24:12 djm Exp $
$Id: ChangeLog,v 1.4154 2006/03/15 00:25:13 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: includes.h,v 1.29 2006/02/08 14:38:18 stevesk Exp $ */
/* $OpenBSD: includes.h,v 1.30 2006/02/08 23:51:24 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -35,7 +35,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <dirent.h>
#include <stddef.h>
#ifdef HAVE_LIMITS_H

4
scp.c
View File

@ -71,7 +71,9 @@
*/
#include "includes.h"
RCSID("$OpenBSD: scp.c,v 1.130 2006/01/31 10:35:43 djm Exp $");
RCSID("$OpenBSD: scp.c,v 1.131 2006/02/08 23:51:24 stevesk Exp $");
#include <dirent.h>
#include "xmalloc.h"
#include "atomicio.h"

View File

@ -15,7 +15,9 @@
*/
#include "includes.h"
RCSID("$OpenBSD: sftp-glob.c,v 1.15 2004/02/17 07:17:29 djm Exp $");
RCSID("$OpenBSD: sftp-glob.c,v 1.16 2006/02/08 23:51:24 stevesk Exp $");
#include <dirent.h>
#include "buffer.h"
#include "bufaux.h"

View File

@ -14,7 +14,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "includes.h"
RCSID("$OpenBSD: sftp-server.c,v 1.50 2006/01/02 01:20:31 djm Exp $");
RCSID("$OpenBSD: sftp-server.c,v 1.51 2006/02/08 23:51:24 stevesk Exp $");
#include <dirent.h>
#include "buffer.h"
#include "bufaux.h"