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

Reply via email to