aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore/src/write_queue.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-04-30 14:29:56 +0200
committerHarald Welte <laforge@gnumonks.org>2010-04-30 14:29:56 +0200
commite562502e8d35356f3183a39ff6aad200d11a77bb (patch)
tree31d24174740b1b104a7c13b0086cbee4fecb90c5 /libosmocore/src/write_queue.c
parente9dd9b047590064eec1c618475ece7f9627e0312 (diff)
parent074c9f904cb5e4f6ab014d76e4abc079c16fc5d7 (diff)
Merge commit '074c9f904cb5e4f6ab014d76e4abc079c16fc5d7'
Diffstat (limited to 'libosmocore/src/write_queue.c')
-rw-r--r--libosmocore/src/write_queue.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libosmocore/src/write_queue.c b/libosmocore/src/write_queue.c
index a0ac2d6fd..618a8c0b3 100644
--- a/libosmocore/src/write_queue.c
+++ b/libosmocore/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;