Remove convoluted code to work around missing lch{flags,mod,own}();

instead, rely upon libnbcompat to provide a workaround (which returns
an error if the target is a symlink).
Should fix another MacOS X build issue due to missing lchown(2).
This commit is contained in:
lukem 2002-10-08 00:34:08 +00:00
parent dba0caccee
commit 6e980262a4
3 changed files with 6 additions and 31 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: compare.c,v 1.41 2002/10/06 01:36:09 lukem Exp $ */
/* $NetBSD: compare.c,v 1.42 2002/10/08 00:34:08 lukem Exp $ */
/*-
* Copyright (c) 1989, 1993
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)compare.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: compare.c,v 1.41 2002/10/06 01:36:09 lukem Exp $");
__RCSID("$NetBSD: compare.c,v 1.42 2002/10/08 00:34:08 lukem Exp $");
#endif
#endif /* not lint */
@ -79,15 +79,6 @@ do { \
#if HAVE_STRUCT_STAT_ST_FLAGS
#if HAVE_LCHFLAGS
#define CHANGE_LCHFLAGS if (lchflags(p->fts_accpath, flags))
#else
#define CHANGE_LCHFLAGS if (S_ISLNK(p->fts_statp->st_mode)) { \
label++; \
printf( \
", not modified: no lchflags call)\n"); \
} else if (chflags(p->fts_accpath, flags))
#endif
#define CHANGEFLAGS \
if (flags != p->fts_statp->st_flags) { \
@ -96,7 +87,7 @@ do { \
printf("%sflags (\"%s\"", tab, \
flags_to_string(p->fts_statp->st_flags, "none")); \
} \
CHANGE_LCHFLAGS { \
if (lchflags(p->fts_accpath, flags)) { \
label++; \
printf(", not modified: %s)\n", \
strerror(errno)); \
@ -260,13 +251,7 @@ compare(NODE *s, FTSENT *p)
tab, (u_long)s->st_mode,
(u_long)p->fts_statp->st_mode & MBITS);
if (uflag) {
#if HAVE_LCHMOD
if (lchmod(p->fts_accpath, s->st_mode))
#else
if (S_ISLNK(p->fts_statp->st_mode))
printf(", not modified: no lchmod call\n");
else if (chmod(p->fts_accpath, s->st_mode))
#endif
printf(", not modified: %s)\n",
strerror(errno));
else

View File

@ -1,4 +1,4 @@
/* $NetBSD: extern.h,v 1.24 2002/10/06 01:36:09 lukem Exp $ */
/* $NetBSD: extern.h,v 1.25 2002/10/08 00:34:08 lukem Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -40,8 +40,6 @@
#if HAVE_CONFIG_H
#include "config.h"
#else
#define HAVE_LCHFLAGS 1
#define HAVE_LCHMOD 1
#define HAVE_STRUCT_STAT_ST_FLAGS 1
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: verify.c,v 1.31 2002/10/06 01:36:09 lukem Exp $ */
/* $NetBSD: verify.c,v 1.32 2002/10/08 00:34:08 lukem Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: verify.c,v 1.31 2002/10/06 01:36:09 lukem Exp $");
__RCSID("$NetBSD: verify.c,v 1.32 2002/10/08 00:34:08 lukem Exp $");
#endif
#endif /* not lint */
@ -270,11 +270,7 @@ miss(NODE *p, char *tail)
continue;
}
if (p->flags & F_MODE) {
#if HAVE_LCHMOD
if (lchmod(path, p->st_mode))
#else
if ((p->type != F_LINK) && chmod(path, p->st_mode))
#endif
printf("%s: permissions not set: %s\n",
path, strerror(errno));
}
@ -284,11 +280,7 @@ miss(NODE *p, char *tail)
flags = p->st_flags;
else
flags = p->st_flags & ~SP_FLGS;
#if HAVE_LCHFLAGS
if (lchflags(path, flags))
#else
if ((p->type != F_LINK) && chflags(path, flags))
#endif
printf("%s: file flags not set: %s\n",
path, strerror(errno));
}