[asterisk-commits] pabelanger: branch 1.6.2 r275260 - in /branches/1.6.2: ./ channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jul 9 14:23:24 CDT 2010


Author: pabelanger
Date: Fri Jul  9 14:23:19 2010
New Revision: 275260

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

................
  r275249 | pabelanger | 2010-07-09 15:21:27 -0400 (Fri, 09 Jul 2010) | 15 lines
  
  Merged revisions 275241 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r275241 | pabelanger | 2010-07-09 15:20:00 -0400 (Fri, 09 Jul 2010) | 8 lines
    
    Fix logging message for stale nonce.
    
    (closes issue #17582)
    Reported by: kenner
    Patches:
          chan_sip.c.diff uploaded by kenner (license 1040)
    Tested by: lmadsen
  ........
................

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

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

Modified: branches/1.6.2/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/channels/chan_sip.c?view=diff&rev=275260&r1=275259&r2=275260
==============================================================================
--- branches/1.6.2/channels/chan_sip.c (original)
+++ branches/1.6.2/channels/chan_sip.c Fri Jul  9 14:23:19 2010
@@ -12777,7 +12777,7 @@
 	if (wrongnonce) {
 		if (good_response) {
 			if (sipdebug)
-				ast_log(LOG_NOTICE, "Correct auth, but based on stale nonce received from '%s'\n", get_header(req, "To"));
+				ast_log(LOG_NOTICE, "Correct auth, but based on stale nonce received from '%s'\n", get_header(req, "From"));
 			/* We got working auth token, based on stale nonce . */
 			set_nonce_randdata(p, 0);
 			transmit_response_with_auth(p, response, req, p->randdata, reliable, respheader, TRUE);




More information about the asterisk-commits mailing list