diff options
Diffstat (limited to 'libglusterfs/src/common-utils.c')
| -rw-r--r-- | libglusterfs/src/common-utils.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/common-utils.c b/libglusterfs/src/common-utils.c index ec1d5c4823c..e855f04a443 100644 --- a/libglusterfs/src/common-utils.c +++ b/libglusterfs/src/common-utils.c @@ -4364,7 +4364,7 @@ recursive_rmdir (const char *delete_path)                  goto out;          } -        GF_FOR_EACH_ENTRY_IN_DIR (entry, dir, scratch); +        GF_SKIP_IRRELEVANT_ENTRIES (entry, dir, scratch);          while (entry) {                  snprintf (path, PATH_MAX, "%s/%s", delete_path, entry->d_name);                  ret = sys_lstat (path, &st); @@ -4387,7 +4387,7 @@ recursive_rmdir (const char *delete_path)                  gf_msg_debug (this->name, 0, "%s %s", ret ?                                "Failed to remove" : "Removed", entry->d_name); -                GF_FOR_EACH_ENTRY_IN_DIR (entry, dir, scratch); +                GF_SKIP_IRRELEVANT_ENTRIES (entry, dir, scratch);          }          ret = sys_closedir (dir);  | 
