Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
3ffbfbda
Commit
3ffbfbda
authored
Feb 14, 2018
by
Sylvain Berfini
🐮
Browse files
Fixed compil
parent
a4614bf4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/chat/modifier/multipart-chat-message-modifier.cpp
src/chat/modifier/multipart-chat-message-modifier.cpp
+1
-1
src/content/content-manager.cpp
src/content/content-manager.cpp
+1
-1
No files found.
src/chat/modifier/multipart-chat-message-modifier.cpp
View file @
3ffbfbda
...
...
@@ -59,7 +59,7 @@ ChatMessageModifier::Result MultipartChatMessageModifier::encode (
multipartMessage
<<
"--"
;
Content
newContent
;
ContentType
newContentType
(
"m
ultipart
/mixed"
);
ContentType
newContentType
(
ContentType
::
M
ultipart
);
newContentType
.
setParameter
(
"boundary="
+
boundary
);
newContent
.
setContentType
(
newContentType
);
newContent
.
setBody
(
multipartMessage
.
str
());
...
...
src/content/content-manager.cpp
View file @
3ffbfbda
...
...
@@ -97,7 +97,7 @@ Content ContentManager::contentListToMultipart (const list<Content> &contents) {
Content
content
;
content
.
setBody
(
desc
);
ContentType
contentType
=
ContentType
::
Multipart
;
contentType
.
setParameter
(
"boundary="
+
boundary
);
contentType
.
setParameter
(
"boundary="
+
MULTIPART_BOUNDARY
);
content
.
setContentType
(
contentType
);
belle_sip_free
(
desc
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment