svn commit: trunk/busybox/coreutils

vda at busybox.net vda at busybox.net
Wed Mar 14 22:06:57 UTC 2007


Author: vda
Date: 2007-03-14 15:06:57 -0700 (Wed, 14 Mar 2007)
New Revision: 18110

Log:
missed hunk of "stop using big static buffer for inode hash"


Modified:
   trunk/busybox/coreutils/du.c


Changeset:
Modified: trunk/busybox/coreutils/du.c
===================================================================
--- trunk/busybox/coreutils/du.c	2007-03-14 22:06:01 UTC (rev 18109)
+++ trunk/busybox/coreutils/du.c	2007-03-14 22:06:57 UTC (rev 18110)
@@ -101,7 +101,7 @@
 
 	if (statbuf.st_nlink > count_hardlinks) {
 		/* Add files/directories with links only once */
-		if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
+		if (is_in_ino_dev_hashtable(&statbuf)) {
 			return 0;
 		}
 		add_to_ino_dev_hashtable(&statbuf, NULL);




More information about the busybox-cvs mailing list