From a75ffaa08d3e540df8648c253028337342dabe09 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Sat, 20 Feb 2021 16:25:05 +0000 Subject: [PATCH] control: Cannot write with hangup --- src/control.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/control.c b/src/control.c index 6eb42d13..13602914 100644 --- a/src/control.c +++ b/src/control.c @@ -193,11 +193,10 @@ control_handle_data(void *arg, unsigned short events) { struct fd_list *fd = arg; - if (events != ELE_READ && events != ELE_WRITE && - events != (ELE_READ | ELE_WRITE)) + if (!(events & (ELE_READ | ELE_WRITE))) logerrx("%s: unexpected event 0x%04x", __func__, events); - if (events & ELE_WRITE) + if (events & ELE_WRITE && !(events & ELE_HANGUP)) control_handle_write(fd); if (events & ELE_READ) control_handle_read(fd); -- 2.47.3