summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--defines.h8
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index dd64f1374..5c9182c23 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,9 @@
2 - (dtucker) [regress/test-exec.sh] Do not prepend an extra "/" to a fully- 2 - (dtucker) [regress/test-exec.sh] Do not prepend an extra "/" to a fully-
3 qualified sshd pathname since some systems (eg Cygwin) may consider "/foo" 3 qualified sshd pathname since some systems (eg Cygwin) may consider "/foo"
4 and "//foo" to be different. Spotted by vinschen at redhat.com. 4 and "//foo" to be different. Spotted by vinschen at redhat.com.
5 - (tim) [configure.ac ] Not all gcc's support -Wsign-compare 5 - (tim) [configure.ac] Not all gcc's support -Wsign-compare. Enhancements
6 and OK dtucker@
7 - (tim) [defines.h] PATH_MAX bits for OpenServer OK dtucker@
6 8
720050821 920050821
8 - (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for 10 - (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for
@@ -2951,4 +2953,4 @@
2951 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2953 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2952 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2954 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2953 2955
2954$Id: ChangeLog,v 1.3877 2005/08/24 00:11:26 tim Exp $ 2956$Id: ChangeLog,v 1.3878 2005/08/24 00:18:21 tim Exp $
diff --git a/defines.h b/defines.h
index 3103f8743..670fc3fe5 100644
--- a/defines.h
+++ b/defines.h
@@ -25,7 +25,7 @@
25#ifndef _DEFINES_H 25#ifndef _DEFINES_H
26#define _DEFINES_H 26#define _DEFINES_H
27 27
28/* $Id: defines.h,v 1.124 2005/08/22 22:06:56 dtucker Exp $ */ 28/* $Id: defines.h,v 1.125 2005/08/24 00:18:21 tim Exp $ */
29 29
30 30
31/* Constants */ 31/* Constants */
@@ -62,6 +62,12 @@ enum
62# endif /* PATH_MAX */ 62# endif /* PATH_MAX */
63#endif /* MAXPATHLEN */ 63#endif /* MAXPATHLEN */
64 64
65#ifndef PATH_MAX
66# ifdef _POSIX_PATH_MAX
67# define PATH_MAX _POSIX_PATH_MAX
68# endif
69#endif
70
65#ifndef MAXSYMLINKS 71#ifndef MAXSYMLINKS
66# define MAXSYMLINKS 5 72# define MAXSYMLINKS 5
67#endif 73#endif