diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-09 17:07:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-09 17:07:12 +0000 |
commit | 9df383337043e2890060872628cc6cc6e5825b79 (patch) | |
tree | 3bfb41d97261b609beb0b57bf1e01a6c65beab6e | |
parent | 29edd005f9e16d66f8fe85ac81da39d7d4311bc7 (diff) | |
download | busybox-w32-9df383337043e2890060872628cc6cc6e5825b79.tar.gz busybox-w32-9df383337043e2890060872628cc6cc6e5825b79.tar.bz2 busybox-w32-9df383337043e2890060872628cc6cc6e5825b79.zip |
Fix problem where 'du file_that_exists' doesn't work.
-rw-r--r-- | coreutils/du.c | 4 | ||||
-rw-r--r-- | du.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index fa76465e7..ac9f60689 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -156,7 +156,7 @@ int du_main(int argc, char **argv) | |||
156 | for (i=optind; i < argc; i++) { | 156 | for (i=optind; i < argc; i++) { |
157 | if ((sum = du(argv[i])) == 0) | 157 | if ((sum = du(argv[i])) == 0) |
158 | status = EXIT_FAILURE; | 158 | status = EXIT_FAILURE; |
159 | if (sum && is_directory(argv[i], FALSE, NULL)) { | 159 | if (is_directory(argv[i], FALSE, NULL)==FALSE) { |
160 | print_normal(sum, argv[i]); | 160 | print_normal(sum, argv[i]); |
161 | } | 161 | } |
162 | reset_ino_dev_hashtable(); | 162 | reset_ino_dev_hashtable(); |
@@ -166,7 +166,7 @@ int du_main(int argc, char **argv) | |||
166 | return status; | 166 | return status; |
167 | } | 167 | } |
168 | 168 | ||
169 | /* $Id: du.c,v 1.29 2000/12/07 19:56:48 markw Exp $ */ | 169 | /* $Id: du.c,v 1.30 2000/12/09 17:07:12 andersen Exp $ */ |
170 | /* | 170 | /* |
171 | Local Variables: | 171 | Local Variables: |
172 | c-file-style: "linux" | 172 | c-file-style: "linux" |
@@ -156,7 +156,7 @@ int du_main(int argc, char **argv) | |||
156 | for (i=optind; i < argc; i++) { | 156 | for (i=optind; i < argc; i++) { |
157 | if ((sum = du(argv[i])) == 0) | 157 | if ((sum = du(argv[i])) == 0) |
158 | status = EXIT_FAILURE; | 158 | status = EXIT_FAILURE; |
159 | if (sum && is_directory(argv[i], FALSE, NULL)) { | 159 | if (is_directory(argv[i], FALSE, NULL)==FALSE) { |
160 | print_normal(sum, argv[i]); | 160 | print_normal(sum, argv[i]); |
161 | } | 161 | } |
162 | reset_ino_dev_hashtable(); | 162 | reset_ino_dev_hashtable(); |
@@ -166,7 +166,7 @@ int du_main(int argc, char **argv) | |||
166 | return status; | 166 | return status; |
167 | } | 167 | } |
168 | 168 | ||
169 | /* $Id: du.c,v 1.29 2000/12/07 19:56:48 markw Exp $ */ | 169 | /* $Id: du.c,v 1.30 2000/12/09 17:07:12 andersen Exp $ */ |
170 | /* | 170 | /* |
171 | Local Variables: | 171 | Local Variables: |
172 | c-file-style: "linux" | 172 | c-file-style: "linux" |