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

6
eris.c
View File

@ -410,7 +410,7 @@ serve_idx(int fd, char *path)
}
if (S_ISDIR(st.st_mode)) {
printf("[DIR] ");
printf("[DIR] ");
} else if (S_ISLNK(st.st_mode)) {
ssize_t len = readlink(de->d_name, symlink, (sizeof symlink) - 1);
@ -418,9 +418,9 @@ serve_idx(int fd, char *path)
continue;
}
name = symlink;
printf("[LNK] "); /* 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 */
}