aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-14 22:06:57 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-14 22:06:57 +0000
commitf8a112017ec7f5205d0eb72665c16de3f7476fe4 (patch)
tree06e752c33e812d66ce2d2bb8a20b1a646ac8cfa0
parent33b8a8025bce51240b280bb8b724d2f14a67f992 (diff)
downloadbusybox-w32-f8a112017ec7f5205d0eb72665c16de3f7476fe4.tar.gz
busybox-w32-f8a112017ec7f5205d0eb72665c16de3f7476fe4.tar.bz2
busybox-w32-f8a112017ec7f5205d0eb72665c16de3f7476fe4.zip
missed hunk of "stop using big static buffer for inode hash"
git-svn-id: svn://busybox.net/trunk/busybox@18110 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/du.c2
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);