[asterisk-commits] kharwell: branch kharwell/pimp_my_sip r384597 - /team/kharwell/pimp_my_sip/res/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 2 15:56:02 CDT 2013
Author: kharwell
Date: Tue Apr 2 15:55:58 2013
New Revision: 384597
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=384597
Log:
removing extra spaces
Modified:
team/kharwell/pimp_my_sip/res/res_sip_messaging.c
team/kharwell/pimp_my_sip/res/res_sip_session.c
Modified: team/kharwell/pimp_my_sip/res/res_sip_messaging.c
URL: http://svnview.digium.com/svn/asterisk/team/kharwell/pimp_my_sip/res/res_sip_messaging.c?view=diff&rev=384597&r1=384596&r2=384597
==============================================================================
--- team/kharwell/pimp_my_sip/res/res_sip_messaging.c (original)
+++ team/kharwell/pimp_my_sip/res/res_sip_messaging.c Tue Apr 2 15:55:58 2013
@@ -194,7 +194,7 @@
/*!
* \brief Prints the message body into the given char buffer.
*
- * \details Copies body content from the received data into the given
+ * \details Copies body content from the received data into the given
* character buffer removing any extra carriage return/line feeds.
*
* \param rdata The SIP request
@@ -321,7 +321,7 @@
mdata->to = ast_strdup(to);
mdata->from = ast_strdup(from);
-
+
/* sometimes from can still contain the tag at this point, so remove it */
if ((tag = strchr(mdata->from, ';'))) {
*tag = '\0';
@@ -429,7 +429,7 @@
send_response(rdata, PJSIP_SC_INTERNAL_SERVER_ERROR, NULL, NULL);
return PJ_TRUE;
}
-
+
if ((code = check_content_type(rdata)) != PJSIP_SC_OK) {
send_response(rdata, code, NULL, NULL);
return PJ_TRUE;
Modified: team/kharwell/pimp_my_sip/res/res_sip_session.c
URL: http://svnview.digium.com/svn/asterisk/team/kharwell/pimp_my_sip/res/res_sip_session.c?view=diff&rev=384597&r1=384596&r2=384597
==============================================================================
--- team/kharwell/pimp_my_sip/res/res_sip_session.c (original)
+++ team/kharwell/pimp_my_sip/res/res_sip_session.c Tue Apr 2 15:55:58 2013
@@ -1200,7 +1200,6 @@
static int has_supplement(struct ast_sip_session *session, pjsip_rx_data *rdata)
{
struct ast_sip_session_supplement *supplement;
-
struct pjsip_method *method = &rdata->msg_info.msg->line.req.method;
AST_LIST_TRAVERSE(&session->supplements, supplement, next) {
@@ -1228,7 +1227,7 @@
* them into the threadpool).
*/
static pj_bool_t session_on_rx_request(pjsip_rx_data *rdata)
-{
+{
pj_status_t handled = PJ_FALSE;
pjsip_dialog *dlg = pjsip_rdata_get_dlg(rdata);
pjsip_inv_session *inv_session;
More information about the asterisk-commits
mailing list