[svn-commits] mjordan: branch 13 r424731 - in /branches/13: ./ res/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 7 12:41:14 CDT 2014


Author: mjordan
Date: Tue Oct  7 12:41:11 2014
New Revision: 424731

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=424731
Log:
res/res_pjsip_outbound_registration: Initialize auth_reject_permanent parameter

Prior to this patch, the auth_reject_permanent parameter was not initialized on
the registration client state, leading to the parameter being disabled
regardless of the value specified in pjsip.conf.

This patch initialized the setting on the registration client state to the
provided configuration value.

ASTERISK-24398 #close
........

Merged revisions 424730 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    branches/13/   (props changed)
    branches/13/res/res_pjsip_outbound_registration.c

Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: branches/13/res/res_pjsip_outbound_registration.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/res/res_pjsip_outbound_registration.c?view=diff&rev=424731&r1=424730&r2=424731
==============================================================================
--- branches/13/res/res_pjsip_outbound_registration.c (original)
+++ branches/13/res/res_pjsip_outbound_registration.c Tue Oct  7 12:41:11 2014
@@ -852,6 +852,7 @@
 	registration->state->client_state->max_retries = registration->max_retries;
 	registration->state->client_state->retries = 0;
 	registration->state->client_state->support_path = registration->support_path;
+	registration->state->client_state->auth_rejection_permanent = registration->auth_rejection_permanent;
 
 	pjsip_regc_update_expires(registration->state->client_state->client, registration->expiration);
 




More information about the svn-commits mailing list