Bug #130
inodes count is perfectible
Start date:
05/20/2012
Due date:
% Done:
0%
Estimated time:
Description
Currently, dfc
calls the function that displays the number of inodes this way:
disp->print_inodes(p->files / 1000, p->favail / 1000);
Or this way under *BSD:
disp->print_inodes(p->files / 1000, p->ffree / 1000);
It is pretty wrong. Values will be messed up if there is less than 1000 inodes.
The function called shoud use a way to display inodes in a "human-readable" way (sort of).