projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7b74e8
)
Add curly braces around a compound if statement so that trunk will build properly
author
Mark Michelson
<mmichelson@digium.com>
Wed, 2 Jan 2008 22:29:15 +0000
(22:29 +0000)
committer
Mark Michelson
<mmichelson@digium.com>
Wed, 2 Jan 2008 22:29:15 +0000
(22:29 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@96028
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_zap.c
patch
|
blob
|
history
diff --git
a/channels/chan_zap.c
b/channels/chan_zap.c
index
216a135
..
e266818
100644
(file)
--- a/
channels/chan_zap.c
+++ b/
channels/chan_zap.c
@@
-11680,9
+11680,10
@@
static char *zap_show_channel(struct ast_cli_entry *e, int cmd, struct ast_cli_a
ast_cli(a->fd, "\tnone\n");
}
#else
- if (tmp->echocancel)
+ if (tmp->echocancel) {
ast_cli(a->fd, "\t%d taps\n", tmp->echocancel);
ast_cli(a->fd, "\t%scurrently %s\n", tmp->echocanbridged ? "" : "(unless TDM bridged) ", tmp->echocanon ? "ON" : "OFF");
+ }
else
ast_cli(a->fd, "\tnone\n");
#endif