diff options
author | Krishnan Parthasarathi <kparthas@redhat.com> | 2013-06-07 15:03:46 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-06-13 19:16:40 -0700 |
commit | f857def7631f660b3e6574c58debdd4d37731f4f (patch) | |
tree | 08aa2b05786b214defb5aeaca81c9541dba01643 /xlators/mgmt/glusterd/src/glusterd-store.h | |
parent | dccd014947131fabfb14ab96ced05cbc685f7076 (diff) |
glusterd: Ignore directories matching *.tmp in store
store being glusterd's persistent store under /var/lib/glusterd/
Change-Id: I1c01a09a8ce4a73ea612f05e7f14d4ab39ad1628
BUG: 971796
Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-on: http://review.gluster.org/5177
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Reviewed-by: Xavier Hernandez <xhernandez@datalab.es>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-store.h')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-store.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.h b/xlators/mgmt/glusterd/src/glusterd-store.h index 762604e23d3..942522c4a4b 100644 --- a/xlators/mgmt/glusterd/src/glusterd-store.h +++ b/xlators/mgmt/glusterd/src/glusterd-store.h @@ -74,6 +74,7 @@ typedef enum glusterd_store_ver_ac_{ if (dir) {\ entry = readdir (dir);\ while (entry && (!strcmp (entry->d_name, ".") ||\ + !fnmatch ("*.tmp", entry->d_name, 0) ||\ !strcmp (entry->d_name, ".."))) {\ entry = readdir (dir);\ }\ |