From fbad73488d5b70ad0031029cdd5be322a41de62b Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Wed, 21 Mar 2018 16:11:51 +0100 Subject: [PATCH] fix build --- src/content/content-manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/content-manager.cpp b/src/content/content-manager.cpp index a87760be7..0e21a2953 100644 --- a/src/content/content-manager.cpp +++ b/src/content/content-manager.cpp @@ -32,7 +32,7 @@ LINPHONE_BEGIN_NAMESPACE // ----------------------------------------------------------------------------- list ContentManager::multipartToContentList (const Content &content) { - string boundary = content.getContentType.getParameter("boundary").empty() ? MultipartBoundary : content.getContentType.getParameter("boundary"); + string boundary = content.getContentType().getParameter("boundary").empty() ? MultipartBoundary : content.getContentType.getParameter("boundary"); const string body = content.getBodyAsString(); belle_sip_multipart_body_handler_t *mpbh = belle_sip_multipart_body_handler_new_from_buffer( body.c_str(), body.length(), boundary.c_str()