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
cd577bf9
...
cd577bf9f6ce6fa3402b34f322516e49a9e72d00
authored
2016-10-23 20:46:34 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix
1 parent
d8194bb3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
mh/inc.c
mh/mhn.c
mh/inc.c
View file @
cd577bf
...
...
@@ -348,6 +348,11 @@ main (int argc, char **argv)
mh_getopt
(
&
argc
,
&
argv
,
options
,
0
,
args_doc
,
prog_doc
,
extra_doc
);
if
(
!
append_folder
)
append_folder
=
mh_global_profile_get
(
"Inbox"
,
"inbox"
);
if
(
argc
)
{
mu_error
(
_
(
"unrecognized arguments"
));
exit
(
1
);
}
mu_registrar_set_default_scheme
(
"mh"
);
...
...
mh/mhn.c
View file @
cd577bf
...
...
@@ -2808,8 +2808,9 @@ main (int argc, char **argv)
mbox
=
mh_open_folder
(
mh_current_folder
(),
MU_STREAM_READ
);
mh_msgset_parse
(
&
msgset
,
mbox
,
argc
,
argv
,
"cur"
);
/* FIXME: Combine the three */
rc
=
0
;
if
(
list_option
)
rc
=
mhn_list
();
rc
|
=
mhn_list
();
if
(
show_option
)
rc
|=
mhn_show
();
if
(
store_option
)
...
...
Please
register
or
sign in
to post a comment