summaryrefslogtreecommitdiff
path: root/ctdb
diff options
context:
space:
mode:
Diffstat (limited to 'ctdb')
-rw-r--r--ctdb/common/sock_io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ctdb/common/sock_io.c b/ctdb/common/sock_io.c
index 3f7138f0b7f..e9e2fa3b111 100644
--- a/ctdb/common/sock_io.c
+++ b/ctdb/common/sock_io.c
@@ -275,7 +275,7 @@ int sock_queue_write(struct sock_queue *queue, uint8_t *buf, size_t buflen)
{
struct tevent_req *req;
struct sock_queue_write_state *state;
- bool status;
+ struct tevent_queue_entry *qentry;
if (buflen >= INT32_MAX) {
return -1;
@@ -289,9 +289,9 @@ int sock_queue_write(struct sock_queue *queue, uint8_t *buf, size_t buflen)
state->pkt = buf;
state->pkt_size = (uint32_t)buflen;
- status = tevent_queue_add_entry(queue->queue, queue->ev, req,
+ qentry = tevent_queue_add_entry(queue->queue, queue->ev, req,
sock_queue_trigger, queue);
- if (! status) {
+ if (qentry == NULL) {
talloc_free(req);
return -1;
}