summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorSebastian Gutierrez <sgutierrez@integraccs.com>2016-11-01 21:48:50 -0300
committerRichard Mudgett <rmudgett@digium.com>2016-11-02 10:45:31 -0500
commit0904c1f4ccaa5b40933dd52ffcd235a036e2ed1c (patch)
tree66ae5593a74f4e1554ae569c95d868c886bcbdd5 /channels/chan_sip.c
parenta380bba1e36cc448ef797b381b9a0ef245e3bded (diff)
chan_sip: add missing account code
Added missing account to AMI event of sip show peers ASTERISK-26176 #close Change-Id: Ieb6c2c80a838a1b59c82103eba4c63ba238dc482
Diffstat (limited to 'channels/chan_sip.c')
-rw-r--r--channels/chan_sip.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 225931850..5e23f6fce 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -20135,7 +20135,9 @@ static struct sip_peer *_sip_show_peers_one(int fd, struct mansession *s, struct
"ACL: %s\r\n"
"Status: %s\r\n"
"RealtimeDevice: %s\r\n"
- "Description: %s\r\n\r\n",
+ "Description: %s\r\n"
+ "Accountcode: %s\r\n"
+ "\r\n",
cont->idtext,
peer->name,
ast_sockaddr_isnull(&peer->addr) ? "-none-" : tmp_host,
@@ -20150,7 +20152,8 @@ static struct sip_peer *_sip_show_peers_one(int fd, struct mansession *s, struct
ast_acl_list_is_empty(peer->acl) ? "no" : "yes", /* permit/deny/acl */
status,
cont->realtimepeers ? (peer->is_realtime ? "yes" : "no") : "no",
- peer->description);
+ peer->description,
+ peer->accountcode);
}
ao2_unlock(peer);