* Fixed mount and umount. Previously they could leak loop device
allocations, causing the system to quickly run out. Fix for umount
by Ben Collins <bcollins@debian.org>, and mount was fixed by me.
+ * ls formatting on 8 char user names fixed by Randolph Chung <tausq@debian.org>.
-Erik Andersen
if (*scratch) {
fputs(scratch, stdout);
if ( strlen( scratch) <= 8 )
- wr(" ", 8-strlen( scratch));
+ wr(" ", 9-strlen( scratch));
}
else {
writenum((long) info->st_uid,(short)8);
+/* vi: set sw=4 ts=4: */
/*
* Mini init implementation for busybox
*
+/* vi: set sw=4 ts=4: */
/*
* Mini init implementation for busybox
*
if (*scratch) {
fputs(scratch, stdout);
if ( strlen( scratch) <= 8 )
- wr(" ", 8-strlen( scratch));
+ wr(" ", 9-strlen( scratch));
}
else {
writenum((long) info->st_uid,(short)8);