summaryrefslogtreecommitdiff
path: root/archivers/pax/files/stat_flags.c
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/pax/files/stat_flags.c')
-rw-r--r--archivers/pax/files/stat_flags.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/pax/files/stat_flags.c b/archivers/pax/files/stat_flags.c
index 3a9d4db510d..200aca66f9c 100644
--- a/archivers/pax/files/stat_flags.c
+++ b/archivers/pax/files/stat_flags.c
@@ -1,4 +1,4 @@
-/* $NetBSD: stat_flags.c,v 1.2 2004/08/21 03:28:56 jlam Exp $ */
+/* $NetBSD: stat_flags.c,v 1.3 2004/08/21 04:20:50 jlam Exp $ */
/*-
* Copyright (c) 1993
@@ -44,7 +44,7 @@
#if 0
static char sccsid[] = "@(#)stat_flags.c 8.2 (Berkeley) 7/28/94";
#else
-__RCSID("$NetBSD: stat_flags.c,v 1.2 2004/08/21 03:28:56 jlam Exp $");
+__RCSID("$NetBSD: stat_flags.c,v 1.3 2004/08/21 04:20:50 jlam Exp $");
#endif
#endif /* not lint */
@@ -86,7 +86,7 @@ flags_to_string(u_long flags, const char *def)
string[0] = '\0';
prefix = NULL;
-#if HAVE_STRUCT_STAT_ST_FLAGS
+#if HAVE_FILE_FLAGS
if (flags & UF_APPEND)
SAPPEND("uappnd");
if (flags & UF_IMMUTABLE)
@@ -145,7 +145,7 @@ string_to_flags(char **stringp, u_long *setp, u_long *clrp)
if (clrp)
*clrp = 0;
-#if HAVE_STRUCT_STAT_ST_FLAGS
+#if HAVE_FILE_FLAGS
string = *stringp;
while ((p = strsep(&string, "\t ,")) != NULL) {
clear = 0;