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
e1e999de
...
e1e999ded50db980bf844c479c9fc150e0ed3e5d
authored
2014-07-17 15:25:06 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix.
* libmailutils/filter/iconvflt.c: Fix silly errors.
1 parent
2357bd10
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
libmailutils/filter/iconvflt.c
libmailutils/filter/iconvflt.c
View file @
e1e999d
...
...
@@ -80,12 +80,12 @@ static void
format_octal
(
char
*
op
,
unsigned
char
n
)
{
op
+=
4
;
*--
op
=
n
%
8
;
n
>>
3
;
*--
op
=
n
%
8
;
n
>>
3
;
*--
op
=
n
%
8
;
n
>>
3
;
*--
op
=
n
%
8
+
'0'
;
n
>>
=
3
;
*--
op
=
n
%
8
+
'0'
;
n
>>
=
3
;
*--
op
=
n
%
8
+
'0'
;
n
>>
=
3
;
*--
op
=
'\\'
;
}
...
...
Please
register
or
sign in
to post a comment