Commit bb053499 authored by garciay's avatar garciay
Browse files

Add valueof for f_route() and f_recordroute() because there return a template...

Add valueof for f_route() and f_recordroute() because there return a template value assigned in a non template variable
parent a15b90ed
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -42,8 +42,8 @@ module LibIms_Steps
		  vc_from := f_initFromHeader(vc_userprofile.id, f_getRndTag()); // init of vc_from using userProfile identifier
		  vc_from := f_initFromHeader(vc_userprofile.id, f_getRndTag()); // init of vc_from using userProfile identifier
        
        
		  vc_requestUri := f_initSipUrl(p_to_user); // Request URI of Invite is identical with To header
		  vc_requestUri := f_initSipUrl(p_to_user); // Request URI of Invite is identical with To header
		  vc_route 		:= f_route(); 		// update the route header field depending on vc_boo_route
		  vc_route 		:= valueof(f_route()); 		// update the route header field depending on vc_boo_route
		  vc_recordRoute := f_recordroute(); // update the route header field depending on vc_boo_route
		  vc_recordRoute := valueof(f_recordroute()); // update the route header field depending on vc_boo_route
		
		
		  LibSip_Steps.f_setHeadersBYE(p_cSeq_s);
		  LibSip_Steps.f_setHeadersBYE(p_cSeq_s);
	  
	  
@@ -59,8 +59,8 @@ module LibIms_Steps
	 */
	 */
		function f_setHeadersCANCEL(inout CSeq p_cSeq_s, in integer p_to_user) runs on ImsComponent
		function f_setHeadersCANCEL(inout CSeq p_cSeq_s, in integer p_to_user) runs on ImsComponent
		{      
		{      
		  vc_route 		:= f_route(); 		// update the route header field depending on vc_boo_route
		  vc_route 		:= valueof(f_route()); 		// update the route header field depending on vc_boo_route
		  vc_recordRoute := f_recordroute(); // update the route header field depending on vc_boo_route
		  vc_recordRoute := valueof(f_recordroute()); // update the route header field depending on vc_boo_route
		
		
		  LibSip_Steps.f_setHeadersCANCEL(p_cSeq_s);
		  LibSip_Steps.f_setHeadersCANCEL(p_cSeq_s);