diff options
Diffstat (limited to 'xlators/protocol/server/src')
| -rw-r--r-- | xlators/protocol/server/src/server3_1-fops.c | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/xlators/protocol/server/src/server3_1-fops.c b/xlators/protocol/server/src/server3_1-fops.c index c652dd5b3..2e0bbb4c8 100644 --- a/xlators/protocol/server/src/server3_1-fops.c +++ b/xlators/protocol/server/src/server3_1-fops.c @@ -901,7 +901,9 @@ server_setxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          "%"PRId64": SETXATTR %s (%s) ==> %s (%s)",                          frame->root->unique, state->loc.path,                          state->loc.inode ? uuid_utoa (state->loc.inode->gfid) : -                        "--", state->dict->members_list->key, +                        "--", ((state->dict) ? ((state->dict->members_list) ? +                                                state->dict->members_list->key : +                                                "(null)") : ("null")),                          strerror (op_errno));          } @@ -940,7 +942,10 @@ server_fsetxattr_cbk (call_frame_t *frame, void *cookie, xlator_t *this,                          "%"PRId64": FSETXATTR %"PRId64" (%s) ==> %s (%s)",                          frame->root->unique, state->resolve.fd_no,                          state->fd ? uuid_utoa (state->fd->inode->gfid) : "--", -                        state->dict->members_list->key, strerror (op_errno)); +                        ((state->dict) ? ((state->dict->members_list) ? +                                          state->dict->members_list->key : +                                          "(null)") : "null"), +                        strerror (op_errno));          GF_PROTOCOL_DICT_SERIALIZE (this, xdata, (&rsp.xdata.xdata_val),                                      rsp.xdata.xdata_len, op_errno, out);  | 
