Bugzilla – Bug 140922
coreutils ls -og output wrong
Last modified: 2006-05-17 22:29:38 UTC
For example run this: 12:17 shanghai:/usr/lib > ls -glo libGLcore.so.1.0.4496 -rwxr-xr-x 15060036 Jul 17 2003 libGLcore.so.1.0.4496 There is a space missing between the link count (1) and the filesize (5060036).
Works fine here no matter which locale.
Since SUSE Linux 10.1 is out, I updated a patch I added to 5.93, and by chance I spotted the off-by-one bug causing this behavior. sizeof("abc") is not the same as strlen("abc"). Sigh.