aboutsummaryrefslogtreecommitdiff
path: root/coreutils/du.c
diff options
context:
space:
mode:
authorJohn Beppu <beppu@lbox.org>2000-02-13 04:10:57 +0000
committerJohn Beppu <beppu@lbox.org>2000-02-13 04:10:57 +0000
commit08c965a0a10cb28a0be30cf257b0ca9852e7ffef (patch)
tree5db989e3ca6210c3966f4cb4bfb8e364e21b2425 /coreutils/du.c
parent5e2b96345ca2a791e56b47d16c1f1cda5d5f6f2b (diff)
downloadbusybox-08c965a0a10cb28a0be30cf257b0ca9852e7ffef.tar.gz
- I suspect the problem has something to do w/ symlinks.
- It's not completely in agreement w/ GNU/du, but + the answer is much closer than before. - Some of the right-shifts seem to have mysteriously disappeared. I put them back in.
Diffstat (limited to 'coreutils/du.c')
-rw-r--r--coreutils/du.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index 912605882..7b5acb490 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -70,7 +70,7 @@ static long du(char *filename)
}
du_depth++;
- sum = statbuf.st_blocks;
+ sum = (statbuf.st_blocks >> 1);
/* Don't add in stuff pointed to by links */
if (S_ISLNK(statbuf.st_mode)) {
@@ -153,4 +153,4 @@ int du_main(int argc, char **argv)
exit(0);
}
-/* $Id: du.c,v 1.12 2000/02/11 21:55:04 erik Exp $ */
+/* $Id: du.c,v 1.13 2000/02/13 04:10:57 beppu Exp $ */