diff options
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/protocol/server/src/server-protocol.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/protocol/server/src/server-protocol.c b/xlators/protocol/server/src/server-protocol.c index 47a3b4b47cf..e0553a1911f 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);  | 
