[svn-commits] file: branch 1.6.0 r112436 - in /branches/1.6.0: ./ channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Apr 2 10:27:57 CDT 2008


Author: file
Date: Wed Apr  2 10:27:56 2008
New Revision: 112436

URL: http://svn.digium.com/view/asterisk?view=rev&rev=112436
Log:
Merged revisions 112431 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r112431 | file | 2008-04-02 12:26:51 -0300 (Wed, 02 Apr 2008) | 7 lines

Since the SIP request structure gets reused multiple times with TCP handling we have to clear the debug state or else we will keep spitting out debug even after it has been turned off.
(closes issue #12169)
Reported by: pj
Patches:
      12169-debugoff-2.diff uploaded by qwell (license 4)
Tested by: pj

........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_sip.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=112436&r1=112435&r2=112436
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Wed Apr  2 10:27:56 2008
@@ -2183,6 +2183,7 @@
 		memset(req.data, 0, sizeof(req.data));
 		req.len = 0;
 		req.ignore = 0;
+		req.debug = 0;
 
 		req.socket.fd = ser->fd;
 		if (ser->ssl) {




More information about the svn-commits mailing list