summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--includes.h3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c30c0e399..e2bedaad8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -264,6 +264,8 @@
264 [openbsd-compat/glob.c openbsd-compat/mktemp.c] 264 [openbsd-compat/glob.c openbsd-compat/mktemp.c]
265 [openbsd-compat/readpassphrase.c] Lots of include fixes for 265 [openbsd-compat/readpassphrase.c] Lots of include fixes for
266 OpenSolaris 266 OpenSolaris
267 - (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
268 warnings.
267 269
26820060313 27020060313
269 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 271 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4165,4 +4167,4 @@
4165 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4167 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4166 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4168 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4167 4169
4168$Id: ChangeLog,v 1.4218 2006/03/15 03:42:54 djm Exp $ 4170$Id: ChangeLog,v 1.4219 2006/03/15 05:04:18 tim Exp $
diff --git a/includes.h b/includes.h
index 431fa2d13..c9f6f3723 100644
--- a/includes.h
+++ b/includes.h
@@ -110,6 +110,9 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
110#ifdef HAVE_SYS_CDEFS_H 110#ifdef HAVE_SYS_CDEFS_H
111# include <sys/cdefs.h> /* For __P() */ 111# include <sys/cdefs.h> /* For __P() */
112#endif 112#endif
113#ifdef HAVE_SYS_STAT_H
114# include <sys/stat.h> /* For S_* constants and macros */
115#endif
113#ifdef HAVE_SYS_SYSMACROS_H 116#ifdef HAVE_SYS_SYSMACROS_H
114# include <sys/sysmacros.h> /* For MIN, MAX, etc */ 117# include <sys/sysmacros.h> /* For MIN, MAX, etc */
115#endif 118#endif