From d0da718ac4e154a59fd3e8f595881767f006e826 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 14 Feb 2018 14:27:26 +0100 Subject: [PATCH] Real compil fix --- 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 1381f8dc1..fea82b66c 100644 --- a/src/content/content-manager.cpp +++ b/src/content/content-manager.cpp @@ -97,7 +97,8 @@ Content ContentManager::contentListToMultipart (const list &contents) { Content content; content.setBody(desc); ContentType contentType = ContentType::Multipart; - contentType.setParameter("boundary=" + MULTIPART_BOUNDARY); + string boundary = "boundary=" + string(MULTIPART_BOUNDARY); + contentType.setParameter(boundary); content.setContentType(contentType); belle_sip_free(desc);