[asterisk-commits] mnicholson: branch 1.6.2 r286757 - in /branches/1.6.2: ./ channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 14 14:27:32 CDT 2010


Author: mnicholson
Date: Tue Sep 14 14:27:28 2010
New Revision: 286757

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=286757
Log:
Merged revisions 286756 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r286756 | mnicholson | 2010-09-14 14:26:18 -0500 (Tue, 14 Sep 2010) | 13 lines
  
  Don't clear the username from a realtime database when a registration expires.
  
  Non-realtime chan_sip does not clear the username from memory when a registration expiries so realtime probably shouldn't either.
  
  (closes issue #17551)
  Reported by: ricardolandim
  Patches:
        reg-expiry-username-1.4-fix1.diff uploaded by mnicholson (license 96)
        reg-expiry-username-1.6.2-fix1.diff uploaded by mnicholson (license 96)
        reg-expiry-username-1.8-fix1.diff uploaded by mnicholson (license 96)
        reg-expiry-username-trunk-fix1.diff uploaded by mnicholson (license 96)
  Tested by: ricardolandim, mnicholson
........

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

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'branch-1.4-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=286757&r1=286756&r2=286757
==============================================================================
--- branches/1.6.2/channels/chan_sip.c (original)
+++ branches/1.6.2/channels/chan_sip.c Tue Sep 14 14:27:28 2010
@@ -12126,7 +12126,7 @@
 
 	if (!sip_cfg.ignore_regexpire) {
 		if (peer->rt_fromcontact && sip_cfg.peer_rtupdate) {
-			ast_update_realtime(tablename, "name", peer->name, "fullcontact", "", "ipaddr", "", "port", "", "regseconds", "0", peer->deprecated_username ? "username" : "defaultuser", "", "regserver", "", "useragent", "", "lastms", "", SENTINEL);
+			ast_update_realtime(tablename, "name", peer->name, "fullcontact", "", "ipaddr", "", "port", "", "regseconds", "0", "regserver", "", "useragent", "", "lastms", "", SENTINEL);
 		} else {
 			ast_db_del("SIP/Registry", peer->name);
 		}




More information about the asterisk-commits mailing list