Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
e22f190e
...
e22f190eee6769435513414a4b8452a3551ccc59
authored
2004-09-18 10:10:52 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_mime_munge_content_header): Bugfix
1 parent
3f06cbfb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mime.c
mailbox/mime.c
View file @
e22f190
...
...
@@ -184,7 +184,7 @@ _mime_munge_content_header (char *field_body)
{
if
(
*
e
==
'\\'
)
{
/* escaped */
memmove
(
e
,
e
+
1
,
strlen
(
e
)
+
2
);
memmove
(
e
,
e
+
1
,
strlen
(
e
));
}
else
if
(
*
e
==
'\"'
)
quoted
=
~
quoted
;
...
...
Please
register
or
sign in
to post a comment