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
bcbac517
...
bcbac517f78ef9a69b7a9af04a56aca81f7d577c
authored
2003-09-25 14:03:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(qp_decode): Bugfix. According to RFC underscore represents space.
1 parent
a7525c2a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
mailbox/filter_trans.c
mailbox/filter_trans.c
View file @
bcbac51
...
...
@@ -472,6 +472,12 @@ qp_decode (const char *iptr, size_t isize, char *optr, size_t osize,
consumed
+=
2
;
}
}
else
if
(
c
==
'_'
)
{
*
optr
++
=
' '
;
(
*
nbytes
)
++
;
consumed
++
;
}
else
{
*
optr
++
=
c
;
...
...
Please
register
or
sign in
to post a comment