[Asterisk-code-review] res pjsip registrar.c: Remove unnecessary CMP STOP. (asterisk[14])
Richard Mudgett
asteriskteam at digium.com
Thu Aug 3 16:21:53 CDT 2017
Richard Mudgett has uploaded this change for review. ( https://gerrit.asterisk.org/6133
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/33/6133/1
diff --git a/res/res_pjsip_registrar.c b/res/res_pjsip_registrar.c
index 2db7538..a4ce547 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/6133
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 14
Gerrit-MessageType: newchange
Gerrit-Change-Id: I20571a202ec0aa1098bb2749eeba18de7ca110b8
Gerrit-Change-Number: 6133
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/3bae3efd/attachment-0001.html>
More information about the asterisk-code-review
mailing list