From 7bedfe12f9ab517010507fa2c48d7c287c660656 Mon Sep 17 00:00:00 2001 From: djm Date: Mon, 24 Jul 2006 04:55:47 +0000 Subject: [PATCH] - (djm) [openbsd-compat/glob.c] Move get_arg_max() into the ifdef HAVE_GLOB block so that it compiles on OpenBSD (or other platforms with a decent glob implementation) with -Werror --- ChangeLog | 6 +++++- openbsd-compat/glob.c | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d2cd9b59..be85b0c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -112,6 +112,10 @@ make the portable tree compile again - sprinkle unistd.h and string.h back in. Don't redefine __unused, as it turned out to be used in headers on Linux, and replace its use in auth-pam.c with ARGSUSED + - (djm) [openbsd-compat/glob.c] + Move get_arg_max() into the ifdef HAVE_GLOB block so that it compiles + on OpenBSD (or other platforms with a decent glob implementation) with + -Werror 20060713 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h @@ -5030,4 +5034,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.4430 2006/07/24 04:51:00 djm Exp $ +$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 b4873932..90723535 100644 --- a/openbsd-compat/glob.c +++ b/openbsd-compat/glob.c @@ -44,6 +44,9 @@ #include #include +#if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \ + !defined(GLOB_HAS_GL_MATCHC) + static long get_arg_max(void) { @@ -56,9 +59,6 @@ get_arg_max(void) #endif } -#if !defined(HAVE_GLOB) || !defined(GLOB_HAS_ALTDIRFUNC) || \ - !defined(GLOB_HAS_GL_MATCHC) - /* * glob(3) -- a superset of the one defined in POSIX 1003.2. * -- 2.11.4.GIT