X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstat.c;h=df0be3a81aa9202a73357a3ecfbac377c0ac8c6e;hb=575e5c29872d9eef1940036f78c7ee202df905ff;hp=f3f373b9583f2b03b2955076e07f9f85c02684e3;hpb=6cb5549df8b0760c80962662441d7228a8eca96b;p=gnulib.git diff --git a/lib/stat.c b/lib/stat.c index f3f373b95..df0be3a81 100644 --- a/lib/stat.c +++ b/lib/stat.c @@ -1,7 +1,10 @@ /* Work around the bug in some systems whereby stat/lstat succeeds when - given the zero-length file name argument. The stat/lstat from SunOS4.1.4 - has this bug. - Copyright (C) 1997-2002 Free Software Foundation, Inc. + given the zero-length file name argument. The stat/lstat from SunOS 4.1.4 + has this bug. Also work around a deficiency in Solaris systems (up to at + least Solaris 9) regarding the semantics of `lstat ("symlink/", sbuf).' + + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,36 +27,12 @@ #include #include #include -#ifndef errno -extern int errno; -#endif -#ifdef LSTAT +#if defined LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK +# include # include -# if HAVE_STDLIB_H -# include -# endif - -# ifdef STAT_MACROS_BROKEN -# undef S_ISLNK -# endif - -# ifndef S_ISLNK -# ifdef S_IFLNK -# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) -# else -# define S_ISLNK(m) 0 -# endif -# endif - -# ifndef HAVE_DECL_FREE -"this configure-time declaration test was not run" -# endif -# if !HAVE_DECL_FREE -void free (); -# endif - -char *xmalloc (); +# include "stat-macros.h" +# include "xalloc.h" /* lstat works differently on Linux and Solaris systems. POSIX (see `pathname resolution' in the glossary) requires that programs like `ls' @@ -94,14 +73,14 @@ slash_aware_lstat (const char *file, struct stat *sbuf) return lstat_result; } -#endif /* LSTAT */ +#endif /* LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK */ /* This is a wrapper for stat/lstat. If FILE is the empty string, fail with errno == ENOENT. Otherwise, return the result of calling the real stat/lstat. This works around the bug in some systems whereby stat/lstat succeeds when - given the zero-length file name argument. The stat/lstat from SunOS4.1.4 + given the zero-length file name argument. The stat/lstat from SunOS 4.1.4 has this bug. */ /* This function also provides a version of lstat with consistent semantics @@ -109,7 +88,11 @@ slash_aware_lstat (const char *file, struct stat *sbuf) #ifdef LSTAT # define rpl_xstat rpl_lstat -# define xstat_return_val(F, S) slash_aware_lstat (F, S) +# if ! LSTAT_FOLLOWS_SLASHED_SYMLINK +# define xstat_return_val(F, S) slash_aware_lstat (F, S) +# else +# define xstat_return_val(F, S) lstat (F, S) +# endif #else # define rpl_xstat rpl_stat # define xstat_return_val(F, S) stat (F, S)