summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2007-10-11 17:17:58 +0000
committerMatthew Fredrickson <creslin@digium.com>2007-10-11 17:17:58 +0000
commit8a52c889883f2013e377d87389f07aec5b781122 (patch)
tree2cd35760a36edd7f690c8889266b095095f1d718
parent14730c0ce410b7f43d0e10b6fa837ae85fcd6628 (diff)
Let's hard code this until I fix it
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@85444 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 4a0bd719a..f20ba4682 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -10970,7 +10970,7 @@ static char *zap_show_channels(struct ast_cli_entry *e, int cmd, struct ast_cli_
blockstr[2] = '\0';
- snprintf(statestr, sizeof(statestr), "%s", tmp->inservice ? "In Service" : "Out of Service");
+ snprintf(statestr, sizeof(statestr), "%s", "In Service");
ast_cli(a->fd, FORMAT, tmps, tmp->exten, tmp->context, tmp->language, tmp->mohinterpret, blockstr, statestr);
tmp = tmp->next;