diff options
Diffstat (limited to 'libglusterfs/src')
| -rw-r--r-- | libglusterfs/src/syncop.c | 4 | ||||
| -rw-r--r-- | libglusterfs/src/syncop.h | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/syncop.c b/libglusterfs/src/syncop.c index 25baa021ada..1f36e57766c 100644 --- a/libglusterfs/src/syncop.c +++ b/libglusterfs/src/syncop.c @@ -1702,12 +1702,12 @@ syncop_rmdir_cbk (call_frame_t *frame, void *cookie, xlator_t *this,  }  int -syncop_rmdir (xlator_t *subvol, loc_t *loc) +syncop_rmdir (xlator_t *subvol, loc_t *loc, int flags)  {          struct syncargs args = {0, };          SYNCOP (subvol, (&args), syncop_rmdir_cbk, subvol->fops->rmdir, loc, -                0, NULL); +                flags, NULL);          errno = args.op_errno;          return args.op_ret; diff --git a/libglusterfs/src/syncop.h b/libglusterfs/src/syncop.h index 18519ff47ac..68218bb17c8 100644 --- a/libglusterfs/src/syncop.h +++ b/libglusterfs/src/syncop.h @@ -382,7 +382,7 @@ int syncop_ftruncate (xlator_t *subvol, fd_t *fd, off_t offset);  int syncop_truncate (xlator_t *subvol, loc_t *loc, off_t offset);  int syncop_unlink (xlator_t *subvol, loc_t *loc); -int syncop_rmdir (xlator_t *subvol, loc_t *loc); +int syncop_rmdir (xlator_t *subvol, loc_t *loc, int flags);  int syncop_fsync (xlator_t *subvol, fd_t *fd, int dataonly);  int syncop_flush (xlator_t *subvol, fd_t *fd);  | 
