[Asterisk-code-review] res pjsip registrar.c: Remove unnecessary CMP STOP. (asterisk[13])

Richard Mudgett asteriskteam at digium.com
Thu Aug 3 16:20:24 CDT 2017


Richard Mudgett has uploaded this change for review. ( https://gerrit.asterisk.org/6132


Change subject: res_pjsip_registrar.c: Remove unnecessary CMP_STOP.
......................................................................

res_pjsip_registrar.c: Remove unnecessary CMP_STOP.

Most uses of CMP_STOP are superfluous and are only respected when
OBJ_MULTIPLE is used to search the container.

Change-Id: I20571a202ec0aa1098bb2749eeba18de7ca110b8
---
M res/res_pjsip_registrar.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/32/6132/1

diff --git a/res/res_pjsip_registrar.c b/res/res_pjsip_registrar.c
index d54bffa..4c38e6d 100644
--- a/res/res_pjsip_registrar.c
+++ b/res/res_pjsip_registrar.c
@@ -123,7 +123,7 @@
 	const struct registrar_contact_details *details = arg;
 	pjsip_uri *contact_uri = pjsip_parse_uri(details->pool, (char*)contact->uri, strlen(contact->uri), 0);
 
-	return (pjsip_uri_cmp(PJSIP_URI_IN_CONTACT_HDR, details->uri, contact_uri) == PJ_SUCCESS) ? CMP_MATCH | CMP_STOP : 0;
+	return (pjsip_uri_cmp(PJSIP_URI_IN_CONTACT_HDR, details->uri, contact_uri) == PJ_SUCCESS) ? CMP_MATCH : 0;
 }
 
 /*! \brief Internal function which validates provided Contact headers to confirm that they are acceptable, and returns number of contacts */

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

Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: I20571a202ec0aa1098bb2749eeba18de7ca110b8
Gerrit-Change-Number: 6132
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20170803/67f8d5e2/attachment.html>


More information about the asterisk-code-review mailing list