On Thu, 15 Aug 2013 12:06:03 +0200 Irek Szczesniak wrote:
> cd -@ is now working again and even returns the correct error messages
> in case of failures:

> ksh -c 'mkdir tmpx; cd -@ tmp; print $?; ls -l'

I get this to work after changing "tmp" => "tmpx" -- must be a typo

but fiddling with your test uncovered an errno leak

        ksh -c 'mkdir tmpx; cd -@ tmpx; ls -l; cd ..; rmdir tmpx; cd -@ tmpx'

produces

        ksh: cd: tmpx: [Bad file number]

this is a problem in the ksh cd O_XATTR logic -- just fixed

_______________________________________________
ast-developers mailing list
[email protected]
http://lists.research.att.com/mailman/listinfo/ast-developers

Reply via email to