[asterisk-commits] rmudgett: branch group/issue14068 r174080 - /team/group/issue14068/channels/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Feb 6 17:11:00 CST 2009


Author: rmudgett
Date: Fri Feb  6 17:11:00 2009
New Revision: 174080

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=174080
Log:
Change to preserve libpri API compatibility

Modified:
    team/group/issue14068/channels/chan_dahdi.c

Modified: team/group/issue14068/channels/chan_dahdi.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/issue14068/channels/chan_dahdi.c?view=diff&rev=174080&r1=174079&r2=174080
==============================================================================
--- team/group/issue14068/channels/chan_dahdi.c (original)
+++ team/group/issue14068/channels/chan_dahdi.c Fri Feb  6 17:11:00 2009
@@ -3383,9 +3383,10 @@
 		}
 		pri_sr_set_caller(sr, l ? (l + ldp_strip) : NULL, n, prilocaldialplan,
 			p->use_callingpres ? ast->connected.id.number_presentation : (l ? PRES_ALLOWED_USER_NUMBER_PASSED_SCREEN : PRES_NUMBER_NOT_AVAILABLE));
-		pri_sr_set_redirecting(sr, ast->redirecting.from.name,
-			ast->cid.cid_rdnis, ast->redirecting.from.number_type,
-			ast->redirecting.from.number_presentation, ast_to_pri_reason(ast->redirecting.reason));
+		pri_sr_set_redirecting(sr, ast->cid.cid_rdnis, ast->redirecting.from.number_type,
+			ast->redirecting.from.number_presentation,
+			ast_to_pri_reason(ast->redirecting.reason));
+		pri_sr_set_redirecting_name(sr, ast->redirecting.from.name);
 
 #ifdef SUPPORT_USERUSER
 		/* User-user info */




More information about the asterisk-commits mailing list