projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d0c519
)
Patch by Seth W. Klein, the -l switch was reversed
author
Glenn L McGrath
<bug1@ihug.co.nz>
Wed, 10 Mar 2004 09:10:53 +0000
(09:10 -0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Wed, 10 Mar 2004 09:10:53 +0000
(09:10 -0000)
coreutils/du.c
patch
|
blob
|
history
diff --git
a/coreutils/du.c
b/coreutils/du.c
index a9f6c28ba24602ab48dec6704a7756a5e9e5e5c7..7984d657a227541ca3e034a8c3cbf24e4d1c6781 100644
(file)
--- a/
coreutils/du.c
+++ b/
coreutils/du.c
@@
-56,7
+56,7
@@
static unsigned int disp_k; /* bss inits to 0 */
#endif
static int max_print_depth = INT_MAX;
-static int count_hardlinks =
INT_MAX
;
+static int count_hardlinks =
1
;
static int status
#if EXIT_SUCCESS == 0
@@
-234,7
+234,7
@@
int du_main(int argc, char **argv)
}
if((opt & (1 << 7))) {
/* -l opt */
- count_hardlinks =
1
;
+ count_hardlinks =
INT_MAX
;
}
print_final_total = opt & (1 << 8); /* -c opt */