[asterisk-commits] res pjsip outbound registration.c: Fix whitespace conflict p... (asterisk[master])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jun 23 12:54:04 CDT 2015


Joshua Colp has submitted this change and it was merged.

Change subject: res_pjsip_outbound_registration.c: Fix whitespace conflict potential.
......................................................................


res_pjsip_outbound_registration.c: Fix whitespace conflict potential.

Change-Id: I82e6e388e3688aebe0783f16c9e0800a747584b5
---
M res/res_pjsip_outbound_registration.c
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  Joshua Colp: Looks good to me, approved; Verified
  Corey Farrell: Looks good to me, but someone else must approve



diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 7f60acd..d0b8687 100644
--- a/res/res_pjsip_outbound_registration.c
+++ b/res/res_pjsip_outbound_registration.c
@@ -389,7 +389,7 @@
 	static const pj_str_t LINE_STR = { "line", 4 };
 
 	if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri)) {
-        	return NULL;
+		return NULL;
 	}
 	pjuri = pjsip_uri_get_uri(uri);
 	return pjsip_param_find(&pjuri->other_param, &LINE_STR);
@@ -403,7 +403,7 @@
 	RAII_VAR(struct sip_outbound_registration_state *, state, NULL, ao2_cleanup);
 
 	if (!(line = get_uri_option_line(rdata->msg_info.to->uri))
-	    && !(line = get_uri_option_line(rdata->msg_info.msg->line.req.uri))) {
+		&& !(line = get_uri_option_line(rdata->msg_info.msg->line.req.uri))) {
 		return NULL;
 	}
 

-- 
To view, visit https://gerrit.asterisk.org/682
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I82e6e388e3688aebe0783f16c9e0800a747584b5
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>



More information about the asterisk-commits mailing list