Hi!

ls only prints the first 8 chars of username and groupname. The fix is 
simple:

In src/ls.c, change the line
    sprintf (p, "%-8.8s ", user_name);
to
    sprintf (p, "%-8s ", user_name);
and the line
        sprintf (p, "%-8.8s ", group_name);
to
        sprintf (p, "%-8s ", group_name);


CU/Lnx Sascha

PGP signature

Reply via email to