diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | openbsd-compat/glob.c | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -112,6 +112,10 @@ | |||
112 | make the portable tree compile again - sprinkle unistd.h and string.h | 112 | make the portable tree compile again - sprinkle unistd.h and string.h |
113 | back in. Don't redefine __unused, as it turned out to be used in | 113 | back in. Don't redefine __unused, as it turned out to be used in |
114 | headers on Linux, and replace its use in auth-pam.c with ARGSUSED | 114 | headers on Linux, and replace its use in auth-pam.c with ARGSUSED |
115 | - (djm) [openbsd-compat/glob.c] | ||
116 | Move get_arg_max() into the ifdef HAVE_GLOB block so that it compiles | ||
117 | on OpenBSD (or other platforms with a decent glob implementation) with | ||
118 | -Werror | ||
115 | 119 | ||
116 | 20060713 | 120 | 20060713 |
117 | - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h | 121 | - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h |
@@ -5030,4 +5034,4 @@ | |||
5030 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5034 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5031 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5035 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5032 | 5036 | ||
5033 | $Id: ChangeLog,v 1.4430 2006/07/24 04:51:00 djm Exp $ | 5037 | $Id: ChangeLog,v 1.4431 2006/07/24 04:55:47 djm Exp $ |
diff --git a/openbsd-compat/glob.c b/openbsd-compat/glob.c index b4873932a..907235353 100644 --- a/openbsd-compat/glob.c +++ b/openbsd-compat/glob.c | |||
@@ -44,6 +44,9 @@ | |||
44 | #include <string.h> | 44 | #include <string.h> |
45 | #include <unistd.h> | 45 | #include <unistd.h> |
46 | 46 | ||
47 | #if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \ | ||
48 | !defined(GLOB_HAS_GL_MATCHC) | ||
49 | |||
47 | static long | 50 | static long |
48 | get_arg_max(void) | 51 | get_arg_max(void) |
49 | { | 52 | { |
@@ -56,9 +59,6 @@ get_arg_max(void) | |||
56 | #endif | 59 | #endif |
57 | } | 60 | } |
58 | 61 | ||
59 | #if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \ | ||
60 | !defined(GLOB_HAS_GL_MATCHC) | ||
61 | |||
62 | /* | 62 | /* |
63 | * glob(3) -- a superset of the one defined in POSIX 1003.2. | 63 | * glob(3) -- a superset of the one defined in POSIX 1003.2. |
64 | * | 64 | * |