aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/app_dumpchan.c4
-rw-r--r--main/cli.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/apps/app_dumpchan.c b/apps/app_dumpchan.c
index 58dcfc8e8..8fca2b64a 100644
--- a/apps/app_dumpchan.c
+++ b/apps/app_dumpchan.c
@@ -85,7 +85,8 @@ static int serialize_showchan(struct ast_channel *c, char *buf, size_t size)
"CallerIDNum= %s\n"
"CallerIDName= %s\n"
"DNIDDigits= %s\n"
- "RDNIS= %s\n"
+ "RDNIS= %s\n"
+ "Language= %s\n"
"State= %s (%d)\n"
"Rings= %d\n"
"NativeFormat= %s\n"
@@ -113,6 +114,7 @@ static int serialize_showchan(struct ast_channel *c, char *buf, size_t size)
S_OR(c->cid.cid_name, "(N/A)"),
S_OR(c->cid.cid_dnid, "(N/A)"),
S_OR(c->cid.cid_rdnis, "(N/A)"),
+ c->language,
ast_state2str(c->_state),
c->_state,
c->rings,
diff --git a/main/cli.c b/main/cli.c
index 74bcfd87d..b84739984 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -801,6 +801,7 @@ static int handle_showchan(int fd, int argc, char *argv[])
" Caller ID: %s\n"
" Caller ID Name: %s\n"
" DNID Digits: %s\n"
+ " Language: %s\n"
" State: %s (%d)\n"
" Rings: %d\n"
" NativeFormats: %s\n"
@@ -827,7 +828,9 @@ static int handle_showchan(int fd, int argc, char *argv[])
c->name, c->tech->type, c->uniqueid,
S_OR(c->cid.cid_num, "(N/A)"),
S_OR(c->cid.cid_name, "(N/A)"),
- S_OR(c->cid.cid_dnid, "(N/A)"), ast_state2str(c->_state), c->_state, c->rings,
+ S_OR(c->cid.cid_dnid, "(N/A)"),
+ c->language,
+ ast_state2str(c->_state), c->_state, c->rings,
ast_getformatname_multiple(nf, sizeof(nf), c->nativeformats),
ast_getformatname_multiple(wf, sizeof(wf), c->writeformat),
ast_getformatname_multiple(rf, sizeof(rf), c->readformat),