I hate this directory indexing output less

This commit is contained in:
Neale Pickett 2012-06-22 13:49:27 -06:00
parent b4cb8c1e96
commit 6af696b8ec
1 changed files with 3 additions and 3 deletions

2
eris.c
View File

@ -420,7 +420,7 @@ serve_idx(int fd, char *path)
name = symlink;
printf("[LNK] "); /* symlink */
} else if (S_ISREG(st.st_mode)) {
printf("[ ] %10llu", (unsigned long long)st.st_size);
printf("%10llu", (unsigned long long)st.st_size);
} else {
continue; /* not a file we can provide -> skip */
}