diff -urN busybox-1.7.1/findutils/find.c busybox-1.7.1-find/findutils/find.c
--- busybox-1.7.1/findutils/find.c	2007-09-03 12:48:54.000000000 +0100
+++ busybox-1.7.1-find/findutils/find.c	2007-09-25 19:26:15.000000000 +0100
@@ -383,9 +383,11 @@
 #if ENABLE_FEATURE_FIND_XDEV
 	if (S_ISDIR(statbuf->st_mode) && xdev_count) {
 		for (i = 0; i < xdev_count; i++) {
-			if (xdev_dev[i] != statbuf->st_dev)
-				return SKIP;
+			if (xdev_dev[i] == statbuf->st_dev)
+				break;
 		}
+		if (i == xdev_count)
+			return SKIP;
 	}
 #endif
 	i = exec_actions(actions, fileName, statbuf);
