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
c3bc5251
...
c3bc5251d75642db7f070d14292e2e8d9901e81b
authored
2003-04-18 12:24:53 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mhn_store_command): Bugfix. Properly use message part numbers.
1 parent
daa00631
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/mhn.c
mh/mhn.c
View file @
c3bc525
...
...
@@ -827,11 +827,11 @@ mhn_store_command (message_t msg, msg_part_t part, char *name)
break
;
case
'P'
:
if
(
msg_part_level
(
part
)
>
1
)
if
(
msg_part_level
(
part
)
>
=
1
)
obstack_1grow
(
&
stk
,
'.'
);
/*FALLTHRU*/
case
'p'
:
if
(
msg_part_level
(
part
)
>
1
)
if
(
msg_part_level
(
part
)
>
=
1
)
msg_part_format_stk
(
&
stk
,
part
);
break
;
...
...
Please
register
or
sign in
to post a comment