diff options
Diffstat (limited to 'src/write_queue.c')
-rw-r--r-- | src/write_queue.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/write_queue.c b/src/write_queue.c index a0ac2d6f..618a8c0b 100644 --- a/src/write_queue.c +++ b/src/write_queue.c @@ -32,6 +32,9 @@ int write_queue_bfd_cb(struct bsc_fd *fd, unsigned int what) if (what & BSC_FD_READ) queue->read_cb(fd); + if (what & BSC_FD_EXCEPT) + queue->except_cb(fd); + if (what & BSC_FD_WRITE) { struct msgb *msg; |