diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 4c742cefe8..b6b4cc86e5 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -20072,7 +20072,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, @@ -20087,7 +20089,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);