aboutsummaryrefslogtreecommitdiff
path: root/du.c
diff options
context:
space:
mode:
authorJohn Beppu <beppu@lbox.org>1999-12-16 21:16:47 +0000
committerJohn Beppu <beppu@lbox.org>1999-12-16 21:16:47 +0000
commit0aa611816772021e706f0996aa2eed56d26ad696 (patch)
tree451789910364c09ee02400442d9f8531ec9c0f90 /du.c
parent1c5b2589d1287008899c07f45541286fe8c37508 (diff)
downloadbusybox-0aa611816772021e706f0996aa2eed56d26ad696.tar.gz
killed an elusive bug in du -s.
Diffstat (limited to 'du.c')
-rw-r--r--du.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/du.c b/du.c
index e5788c63d..ed90bc445 100644
--- a/du.c
+++ b/du.c
@@ -136,11 +136,11 @@ du_main(int argc, char **argv)
int sum;
for ( ; i < argc; i++) {
sum = du(argv[i]);
- if (sum) { print_normal(sum, argv[i]); }
+ if ((sum) && (isDirectory(argv[i]))) { print_normal(sum, argv[i]); }
}
}
exit(0);
}
-/* $Id: du.c,v 1.6 1999/12/15 18:52:17 beppu Exp $ */
+/* $Id: du.c,v 1.7 1999/12/16 21:16:47 beppu Exp $ */