[svn-commits] mmichelson: branch group/issue8824 r148252 - /team/group/issue8824/channels/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Oct 10 10:45:33 CDT 2008


Author: mmichelson
Date: Fri Oct 10 10:45:33 2008
New Revision: 148252

URL: http://svn.digium.com/view/asterisk?view=rev&rev=148252
Log:
Fix compilation


Modified:
    team/group/issue8824/channels/chan_sip.c

Modified: team/group/issue8824/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/team/group/issue8824/channels/chan_sip.c?view=diff&rev=148252&r1=148251&r2=148252
==============================================================================
--- team/group/issue8824/channels/chan_sip.c (original)
+++ team/group/issue8824/channels/chan_sip.c Fri Oct 10 10:45:33 2008
@@ -1930,7 +1930,7 @@
 static int transmit_response(struct sip_pvt *p, const char *msg, const struct sip_request *req);
 static int transmit_response_reliable(struct sip_pvt *p, const char *msg, const struct sip_request *req);
 static int transmit_response_with_date(struct sip_pvt *p, const char *msg, const struct sip_request *req);
-static int transmit_response_with_sdp(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable, int oldsdp, int add_rpid);
+static int transmit_response_with_sdp(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable, int oldsdp, int rpid);
 static int transmit_response_with_unsupported(struct sip_pvt *p, const char *msg, const struct sip_request *req, const char *unsupported);
 static int transmit_response_with_auth(struct sip_pvt *p, const char *msg, const struct sip_request *req, const char *rand, enum xmittype reliable, const char *header, int stale);
 static int transmit_response_with_allow(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable);
@@ -8965,7 +8965,7 @@
 /*! \brief Used for 200 OK and 183 early media 
 	\return Will return XMIT_ERROR for network errors.
 */
-static int transmit_response_with_sdp(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable, int oldsdp, int add_rpid)
+static int transmit_response_with_sdp(struct sip_pvt *p, const char *msg, const struct sip_request *req, enum xmittype reliable, int oldsdp, int rpid)
 {
 	struct sip_request resp;
 	int seqno;
@@ -8974,7 +8974,7 @@
 		return -1;
 	}
 	respprep(&resp, p, msg, req);
-	if (add_rpid == TRUE) {
+	if (rpid == TRUE) {
 		add_rpid(&resp, p);
 	}
 	if (p->rtp) {




More information about the svn-commits mailing list