diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-14 22:06:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-14 22:06:57 +0000 |
commit | e1e93c1e1cf0ddbb1749176d5f1fc430c869c37a (patch) | |
tree | 06e752c33e812d66ce2d2bb8a20b1a646ac8cfa0 /coreutils/du.c | |
parent | 6ef06eeed435eee87a5b6141d1ad445174e8019b (diff) | |
download | busybox-w32-e1e93c1e1cf0ddbb1749176d5f1fc430c869c37a.tar.gz busybox-w32-e1e93c1e1cf0ddbb1749176d5f1fc430c869c37a.tar.bz2 busybox-w32-e1e93c1e1cf0ddbb1749176d5f1fc430c869c37a.zip |
missed hunk of "stop using big static buffer for inode hash"
Diffstat (limited to 'coreutils/du.c')
-rw-r--r-- | coreutils/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index eceb646d1..e5fe5ffe2 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -101,7 +101,7 @@ static long du(const char * const filename) | |||
101 | 101 | ||
102 | if (statbuf.st_nlink > count_hardlinks) { | 102 | if (statbuf.st_nlink > count_hardlinks) { |
103 | /* Add files/directories with links only once */ | 103 | /* Add files/directories with links only once */ |
104 | if (is_in_ino_dev_hashtable(&statbuf, NULL)) { | 104 | if (is_in_ino_dev_hashtable(&statbuf)) { |
105 | return 0; | 105 | return 0; |
106 | } | 106 | } |
107 | add_to_ino_dev_hashtable(&statbuf, NULL); | 107 | add_to_ino_dev_hashtable(&statbuf, NULL); |