diff options
author | Anuradha Talur <atalur@redhat.com> | 2015-11-23 15:56:28 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-12-02 16:00:16 -0800 |
commit | 9c378026e9561595586a817fee0b439e2c863a22 (patch) | |
tree | ec8ed984a3ec4ec451913758403bf536a0f07e80 /xlators/features/index/src | |
parent | cb7da0ffba147173bc9e6cd05f0a88a2c1ac9cdc (diff) |
heal : Changed heal info to process all indices directories
Change-Id: Ida863844e14309b6526c1b8434273fbf05c410d2
BUG: 1250803
Signed-off-by: Anuradha Talur <atalur@redhat.com>
Reviewed-on: http://review.gluster.org/12658
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/features/index/src')
-rw-r--r-- | xlators/features/index/src/index.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xlators/features/index/src/index.c b/xlators/features/index/src/index.c index 1d64ef2bf6e..f08cdb1d200 100644 --- a/xlators/features/index/src/index.c +++ b/xlators/features/index/src/index.c @@ -1330,7 +1330,7 @@ index_fetch_link_count (xlator_t *this, index_xattrop_type_t type) } else if (!strcmp (entry->d_name, ".") || !strcmp (entry->d_name, "..")) { continue; - } else if (!strncmp (entry->d_name, subdir, strlen (subdir))) { + } else { make_file_path (priv->index_basepath, subdir, entry->d_name, index_path, sizeof (index_path)); @@ -1345,9 +1345,6 @@ index_fetch_link_count (xlator_t *this, index_xattrop_type_t type) else break; } - } else { - count = 1; - goto out; } } out: |