diff options
Diffstat (limited to 'server/tools')
-rw-r--r-- | server/tools/sss_sync_ops.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/server/tools/sss_sync_ops.c b/server/tools/sss_sync_ops.c index 3359e5be..25b8ac7a 100644 --- a/server/tools/sss_sync_ops.c +++ b/server/tools/sss_sync_ops.c @@ -61,12 +61,7 @@ struct sync_op_res { */ static int sync_ops_recv(struct tevent_req *req) { - enum tevent_req_state tstate; - uint64_t err; - - if (tevent_req_is_error(req, &tstate, &err)) { - return err; - } + TEVENT_REQ_RETURN_ON_ERROR(req); return EOK; } |