summaryrefslogtreecommitdiff
path: root/channels/chan_dahdi.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_dahdi.c')
-rw-r--r--channels/chan_dahdi.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 8ef0cec30..ddaeccd4f 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -8787,11 +8787,13 @@ static int dahdi_write(struct ast_channel *ast, struct ast_frame *frame)
return 0;
}
if (p->dialing) {
- ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",ast_channel_name(ast));
+ ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",
+ ast_channel_name(ast));
return 0;
}
if (!p->owner) {
- ast_debug(5, "Dropping frame since there is no active owner on %s...\n",ast_channel_name(ast));
+ ast_debug(5, "Dropping frame since there is no active owner on %s...\n",
+ ast_channel_name(ast));
return 0;
}
if (p->cidspill) {