From: Jim Meyering Date: Sat, 17 Dec 2005 10:33:08 +0000 (+0000) Subject: Switch back from HAVE_ACL to USE_ACL: The acl() syscall X-Git-Tag: COREUTILS-6_0~1091 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6ece7ba6cea1a99c52a409138a842f4bc0b5ceb;p=platform%2Fupstream%2Fcoreutils.git Switch back from HAVE_ACL to USE_ACL: The acl() syscall is no requirement for ACL support; particularly, it does not exist on systems that have POSIX ACLs. --- diff --git a/src/ls.c b/src/ls.c index 99585f4..83a16fb 100644 --- a/src/ls.c +++ b/src/ls.c @@ -193,13 +193,13 @@ struct fileinfo enum filetype filetype; -#if HAVE_ACL +#if USE_ACL /* For long listings, true if the file has an access control list. */ bool have_acl; #endif }; -#if HAVE_ACL +#if USE_ACL # define FILE_HAS_ACL(F) ((F)->have_acl) #else # define FILE_HAS_ACL(F) 0 @@ -334,7 +334,7 @@ static int current_time_ns = -1; /* Whether any of the files has an ACL. This affects the width of the mode column. */ -#if HAVE_ACL +#if USE_ACL static bool any_has_acl; #else enum { any_has_acl = false }; @@ -2477,7 +2477,7 @@ clear_files (void) } files_index = 0; -#if HAVE_ACL +#if USE_ACL any_has_acl = false; #endif inode_number_width = 0; @@ -2588,7 +2588,7 @@ gobble_file (char const *name, enum filetype type, bool command_line_arg, return 0; } -#if HAVE_ACL +#if USE_ACL if (format == long_format) { int n = file_has_acl (absolute_name, &f->stat);