[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI, minor regression in coreutils-8.13: ls -lL vs. ACLs
From: |
Jim Meyering |
Subject: |
FYI, minor regression in coreutils-8.13: ls -lL vs. ACLs |
Date: |
Mon, 03 Oct 2011 13:21:27 +0200 |
FYI, coreutils-8.13 introduced a regression.
With 8.12 and earlier, applying ls -lL to a symlink to an ACL'd file
would do this:
$ touch k; setfacl -m user:${USER}:r k; ln -s k s; env ls -lL s
-rw-r-----+ 1 meyering meyering 0 Oct 3 13:16 s
Note the "+".
With 8.13, you get a "." (w/SELinux) or nothing (w/o SELinux)
in place of the "+" indicator:
$ env ls -lL s
-rw-r-----. 1 meyering meyering 0 Oct 3 13:16 s
For details, see this discussion:
http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/28538
- FYI, minor regression in coreutils-8.13: ls -lL vs. ACLs,
Jim Meyering <=