diff options
author | Anand Avati <avati@gluster.com> | 2010-04-08 12:24:31 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-04-08 12:56:58 -0700 |
commit | 1e30fc3e001594e9cfd372079adf2172bc9ed3df (patch) | |
tree | b5ab4ec95ade31029f3bb743b581700d67a62ea8 /xlators/cluster/afr/src/afr-self-heal-common.c | |
parent | e53cb0787943d51f880daa829aa5699851e985e8 (diff) |
iatt: change S_IF macros with IA_IF macros in missing places
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 730 (unknown filetypes and inode conflicts in afr)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=730
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-common.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index dead7a323..5115a7306 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -1219,17 +1219,17 @@ sh_missing_entries_create (call_frame_t *frame, xlator_t *this) } switch (type) { - case S_IFSOCK: - case S_IFREG: - case S_IFBLK: - case S_IFCHR: - case S_IFIFO: + case IA_IFSOCK: + case IA_IFREG: + case IA_IFBLK: + case IA_IFCHR: + case IA_IFIFO: sh_missing_entries_mknod (frame, this); break; - case S_IFLNK: + case IA_IFLNK: sh_missing_entries_readlink (frame, this); break; - case S_IFDIR: + case IA_IFDIR: sh_missing_entries_mkdir (frame, this); break; default: |