1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

merge with 3.5.1

This commit is contained in:
Jim Meyering
1993-05-02 21:35:51 +00:00
parent a4bfda47ac
commit 93dcd18946
5 changed files with 56 additions and 6 deletions

View File

@@ -43,8 +43,11 @@ char *alloca ();
#endif
#ifdef STDC_HEADERS
#include <errno.h>
#include <stdlib.h>
#endif
#if defined (STDC_HEADERS) || defined (HAVE_ERRNO_H)
#include <errno.h>
#else
extern int errno;
#endif
@@ -147,7 +150,7 @@ make_path (argpath, mode, parent_mode, owner, group, verbose_fmt_string)
if (owner != (uid_t) -1 && group != (gid_t) -1
&& chown (dirpath, owner, group)
#ifdef AFS
#if defined(AFS) && defined (EPERM)
&& errno != EPERM
#endif
)