From: Volker Lendecke Date: Fri, 9 Jun 2017 06:41:16 +0000 (+0200) Subject: ctdbd_conn: Fix a copy&paste error X-Git-Tag: ldb-1.1.31~120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=500df7a3ca40d180a49985efb58e313dfc7581f5;p=thirdparty%2Fsamba.git ctdbd_conn: Fix a copy&paste error Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 053d1b57e71..fc7b81fc872 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -1783,7 +1783,7 @@ static int ctdbd_connection_destructor(struct ctdbd_connection *c) for (recv_state = c->recv_list; recv_state != NULL;) { DLIST_REMOVE(c->recv_list, recv_state); recv_state->conn = NULL; - tevent_req_defer_callback(send_state->req, recv_state->ev); + tevent_req_defer_callback(recv_state->req, recv_state->ev); tevent_req_error(recv_state->req, EIO); }