View Single Post
Posts: 2,802 | Thanked: 4,491 times | Joined on Nov 2007
#381
Originally Posted by luca View Post
I have to investigate why keychain stopped working
Hm, what/where is that? Sounds interesting :-)

found it, ps doesn't support anymore the "ps x" syntax.
Strictly speaking it never did. It claims to support POSIX-style arguments (rather than BSD, "ps -e" would be the closest equivalent) but silently ignores most of them :-/

But yeah, for some reason it now complains about x whereas it didn't before, thanks for spotting it. The change in behaviour is caused by CONFIG_FEATURE_PS_WIDE. With this enabled it compiles in call to getopt32 with the only option it does support, causing it to fail with anything else. I'll get rid of it.