summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2008-05-08 15:04:45 +0000
committerMatthew Fredrickson <creslin@digium.com>2008-05-08 15:04:45 +0000
commit4465c8704ddcbde916f9aab0ec5b70941fd3bdfb (patch)
tree2fb6966f7ab8a0166f1c317e5a69464c0cfdca9a /channels
parent0f1b96623b4198b1ad170e319ddddd3659ef6497 (diff)
Remove unused code as well as demote an error message to a debug message
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115548 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index c201c1a4e..0788957f1 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -9369,21 +9369,17 @@ static void *ss7_linkset(void *data)
res = ss7_read(ss7, pollers[i].fd);
ast_mutex_unlock(&linkset->lock);
}
+
if (pollers[i].revents & POLLOUT) {
ast_mutex_lock(&linkset->lock);
res = ss7_write(ss7, pollers[i].fd);
ast_mutex_unlock(&linkset->lock);
if (res < 0) {
- ast_log(LOG_ERROR, "Error in write %s", strerror(errno));
+ ast_debug(1, "Error in write %s\n", strerror(errno));
}
}
}
-#if 0
- if (res < 0)
- exit(-1);
-#endif
-
while ((e = ss7_check_event(ss7))) {
switch (e->e) {
case SS7_EVENT_UP: