diff options
Diffstat (limited to 'xlators/features/snapview-server/src/snapview-server-helpers.c')
| -rw-r--r-- | xlators/features/snapview-server/src/snapview-server-helpers.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/features/snapview-server/src/snapview-server-helpers.c b/xlators/features/snapview-server/src/snapview-server-helpers.c index 7f03dc47f02..c621484c19b 100644 --- a/xlators/features/snapview-server/src/snapview-server-helpers.c +++ b/xlators/features/snapview-server/src/snapview-server-helpers.c @@ -348,7 +348,7 @@ svs_fill_ino_from_gfid (struct iatt *buf)          GF_VALIDATE_OR_GOTO (this->name, buf, out);          /* consider least significant 8 bytes of value out of gfid */ -        if (uuid_is_null (buf->ia_gfid)) { +        if (gf_uuid_is_null (buf->ia_gfid)) {                  buf->ia_ino = -1;                  goto out;          } @@ -380,7 +380,7 @@ svs_iatt_fill (uuid_t gfid, struct iatt *buf)          buf->ia_blocks = 8;          buf->ia_size = 4096; -        uuid_copy (buf->ia_gfid, gfid); +        gf_uuid_copy (buf->ia_gfid, gfid);          svs_fill_ino_from_gfid (buf);          buf->ia_prot = ia_prot_from_st_mode (0755);  | 
