From 43f0a0bb3a178794ac9fa3f5010db680c5d1b018 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 29 Sep 2007 23:55:30 +0000 Subject: apply all post-1.7.1 patches, set version to 1.7.2 --- findutils/find.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'findutils') diff --git a/findutils/find.c b/findutils/find.c index 2158468..f3167a0 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -383,9 +383,11 @@ static int fileAction(const char *fileName, struct stat *statbuf, void *userData #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); -- cgit v1.1