From c392a1e90c6504967da7dc3f4fce5c1009e0034f Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Tue, 7 Jul 2009 20:42:42 +0000 Subject: protocol/server: use translated flags in protocol/server open and create fops Signed-off-by: Anand V. Avati --- xlators/protocol/server/src/server-protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xlators/protocol/server/src/server-protocol.c b/xlators/protocol/server/src/server-protocol.c index 47a3b4b47..e0553a191 100644 --- a/xlators/protocol/server/src/server-protocol.c +++ b/xlators/protocol/server/src/server-protocol.c @@ -3765,7 +3765,7 @@ server_create (call_frame_t *frame, xlator_t *bound_xl, state->bname = req->bname + pathlen; state->mode = ntoh32 (req->mode); - state->flags = ntoh32 (req->flags); + state->flags = gf_flags_to_flags (ntoh32 (req->flags)); } ret = server_loc_fill (&(state->loc), state, @@ -3845,7 +3845,7 @@ server_open (call_frame_t *frame, xlator_t *bound_xl, state->ino = ntoh64 (req->ino); state->path = req->path; pathlen = STRLEN_0(state->path); - state->flags = ntoh32 (req->flags); + state->flags = gf_flags_to_flags (ntoh32 (req->flags)); } ret = server_loc_fill (&(state->loc), state, state->ino, 0, NULL, state->path); -- cgit