summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2009-07-21 22:24:56 +0000
committerJeff Peeler <jpeeler@digium.com>2009-07-21 22:24:56 +0000
commit56c59985de9e6f9132e249801c3607e02cd8e3f1 (patch)
treeca2b6031af36697c3bb3a215888c1c2bae207527
parentced2554f60a2cedcc38ea54736475eb45e201e5d (diff)
whitespace fix only
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@207934 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_dahdi.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index a69f95f92..3270de648 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -2381,14 +2381,14 @@ static int my_is_off_hook(void *pvt)
ast_log(LOG_WARNING, "Unable to check hook state on channel %d: %s\n", p->channel, strerror(errno));
}
- if ((p->sig == SIG_FXSKS) || (p->sig == SIG_FXSGS)) {
- /* When "onhook" that means no battery on the line, and thus
- it is out of service..., if it's on a TDM card... If it's a channel
- bank, there is no telling... */
- return (par.rxbits > -1) || par.rxisoffhook;
- }
-
- return par.rxisoffhook;
+ if ((p->sig == SIG_FXSKS) || (p->sig == SIG_FXSGS)) {
+ /* When "onhook" that means no battery on the line, and thus
+ it is out of service..., if it's on a TDM card... If it's a channel
+ bank, there is no telling... */
+ return (par.rxbits > -1) || par.rxisoffhook;
+ }
+
+ return par.rxisoffhook;
}
static void dahdi_enable_ec(struct dahdi_pvt *p);