From ee01434774f935ec8c4281586d7c298ebdd14344 Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Wed, 21 Mar 2018 16:15:27 +0100 Subject: [PATCH] fix build --- src/content/content-manager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/content-manager.cpp b/src/content/content-manager.cpp index 2223de63f..a3b63568e 100644 --- a/src/content/content-manager.cpp +++ b/src/content/content-manager.cpp @@ -22,6 +22,7 @@ #include "content-manager.h" #include "content-type.h" #include "content/content.h" +#include "content/header-param.h" // ============================================================================= @@ -32,7 +33,7 @@ LINPHONE_BEGIN_NAMESPACE // ----------------------------------------------------------------------------- list ContentManager::multipartToContentList (const Content &content) { - string boundary = content.getContentType().getParameter("boundary").getValue().empty() ? MultipartBoundary : content.getContentType.getParameter("boundary").getValue(); + string boundary = content.getContentType().getParameter("boundary").getValue().empty() ? MultipartBoundary : content.getContentType().getParameter("boundary").getValue(); 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()