summaryrefslogtreecommitdiffstats
path: root/mISDN.cpp
diff options
context:
space:
mode:
authorAndreas Eversberg2010-01-30 11:59:07 +0100
committerAndreas Eversberg2010-01-30 11:59:07 +0100
commitce460a94e6371173c4ce063229276b6d32f47abd (patch)
treea99e87d2ed002a907e75e7d3a9ce0b58cfd13fe5 /mISDN.cpp
parent- Fixed HLC (higher layer capability) modification to LCR routing. (diff)
downloadlcr-ce460a94e6371173c4ce063229276b6d32f47abd.tar.gz
lcr-ce460a94e6371173c4ce063229276b6d32f47abd.tar.xz
lcr-ce460a94e6371173c4ce063229276b6d32f47abd.zip
register_fd() bugfix.
Diffstat (limited to 'mISDN.cpp')
-rw-r--r--mISDN.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mISDN.cpp b/mISDN.cpp
index 035b78b..7be3d4f 100644
--- a/mISDN.cpp
+++ b/mISDN.cpp
@@ -82,7 +82,7 @@ int mISDN_initialize(void)
if (pipe(upqueue_pipe) < 0)
FATAL("Failed to open pipe\n");
- memset(&upqueue_fd, 0, sizeof(upqueue_fd.fd));
+ memset(&upqueue_fd, 0, sizeof(upqueue_fd));
upqueue_fd.fd = upqueue_pipe[0];
register_fd(&upqueue_fd, LCR_FD_READ, mISDN_upqueue, NULL, 0);