From 875568c0f9c8d6f6c317e6a34fd7d87196e05aee Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Fri, 22 Sep 2017 11:02:11 -0400 Subject: res_pjsip: Use ast_sip_is_content_type() where appropriate Change-Id: If3ab0d73d79ac4623308bd48508af2bfd554937d --- res/res_pjsip_publish_asterisk.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'res/res_pjsip_publish_asterisk.c') diff --git a/res/res_pjsip_publish_asterisk.c b/res/res_pjsip_publish_asterisk.c index 7e87762fd..fa5e4ced7 100644 --- a/res/res_pjsip_publish_asterisk.c +++ b/res/res_pjsip_publish_asterisk.c @@ -605,8 +605,7 @@ static int asterisk_publication_devicestate_state_change(struct ast_sip_publicat } /* We only accept JSON for content */ - if (pj_strcmp2(&body->content_type.type, "application") || - pj_strcmp2(&body->content_type.subtype, "json")) { + if (!ast_sip_is_content_type(&body->content_type, "application", "json")) { ast_debug(2, "Received unsupported content type for Asterisk event on resource '%s'\n", ast_sorcery_object_get_id(config)); return -1; @@ -697,8 +696,7 @@ static int asterisk_publication_mwi_state_change(struct ast_sip_publication *pub } /* We only accept JSON for content */ - if (pj_strcmp2(&body->content_type.type, "application") || - pj_strcmp2(&body->content_type.subtype, "json")) { + if (!ast_sip_is_content_type(&body->content_type, "application", "json")) { ast_debug(2, "Received unsupported content type for Asterisk event on resource '%s'\n", ast_sorcery_object_get_id(config)); return -1; -- cgit v1.2.3