[asterisk-commits] kmoore: branch 1.8 r334006 - /branches/1.8/channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Aug 31 10:18:43 CDT 2011


Author: kmoore
Date: Wed Aug 31 10:18:37 2011
New Revision: 334006

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=334006
Log:
Correct an AMI protocol violation with SIPshowpeer

The response of SIPshowpeer ends with "\r\n\r\n". Since other commands are
ended by using \r\n this confuses any interfacing script.

(closes issue ASTERISK-17486)

Modified:
    branches/1.8/channels/chan_sip.c

Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=334006&r1=334005&r2=334006
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Wed Aug 31 10:18:37 2011
@@ -16691,7 +16691,7 @@
 	a[3] = peer;
 
 	_sip_show_peer(1, -1, s, m, 4, a);
-	astman_append(s, "\r\n\r\n" );
+	astman_append(s, "\r\n" );
 	return 0;
 }
 




More information about the asterisk-commits mailing list