]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Bug 6853 - Manager fixes: 1) extra ActionID, 2) missing colon
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 30 Mar 2006 22:56:35 +0000 (22:56 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 30 Mar 2006 22:56:35 +0000 (22:56 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@16581 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 046fa5eb0339cdfed27e29e3d94bb2afcbb5be78..bdd0092274de4c974af76a5c66e489bb60daf59d 100644 (file)
@@ -7984,11 +7984,7 @@ static int _sip_show_peer(int type, int fd, struct mansession *s, struct message
                ast_cli(fd,"\n");
                ASTOBJ_UNREF(peer,sip_destroy_peer);
        } else  if (peer && type == 1) { /* manager listing */
-               char *actionid = astman_get_header(m,"ActionID");
-
                ast_cli(fd, "Channeltype: SIP\r\n");
-               if (actionid)
-                       ast_cli(fd, "ActionID: %s\r\n", actionid);
                ast_cli(fd, "ObjectName: %s\r\n", peer->name);
                ast_cli(fd, "ChanObjectType: peer\r\n");
                ast_cli(fd, "SecretExist: %s\r\n", ast_strlen_zero(peer->secret)?"N":"Y");
@@ -8021,7 +8017,7 @@ static int _sip_show_peer(int type, int fd, struct mansession *s, struct message
                ast_cli(fd, "SIP-UserPhone: %s\r\n", (ast_test_flag(peer, SIP_USEREQPHONE)?"Y":"N"));
 
                /* - is enumerated */
-               ast_cli(fd, "SIP-DTMFmode %s\r\n", dtmfmode2str(ast_test_flag(peer, SIP_DTMF)));
+               ast_cli(fd, "SIP-DTMFmode: %s\r\n", dtmfmode2str(ast_test_flag(peer, SIP_DTMF)));
                ast_cli(fd, "SIPLastMsg: %d\r\n", peer->lastmsg);
                ast_cli(fd, "ToHost: %s\r\n", peer->tohost);
                ast_cli(fd, "Address-IP: %s\r\nAddress-Port: %d\r\n",  peer->addr.sin_addr.s_addr ? ast_inet_ntoa(iabuf, sizeof(iabuf), peer->addr.sin_addr) : "", ntohs(peer->addr.sin_port));