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
a6c40e05
...
a6c40e059d7c8229ab467fce345f75e3d901db5c
authored
2006-05-21 20:31:34 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
1 parent
6431b4e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
mh/folder.c
mh/folder.c
View file @
a6c40e0
...
...
@@ -875,6 +875,12 @@ main (int argc, char **argv)
mu_argp_init
(
program_version
,
NULL
);
mh_argp_parse
(
&
argc
,
&
argv
,
0
,
options
,
mh_option
,
args_doc
,
doc
,
opt_handler
,
NULL
,
&
index
);
/* If folder is invoked by a name ending with "s" (e.g., folders),
`-all' is assumed */
if
(
program_invocation_short_name
[
strlen
(
program_invocation_short_name
)
-
1
]
==
's'
)
show_all
=
1
;
if
(
has_folder
)
{
/* If a +folder is given along with the -all switch, folder will, in
...
...
@@ -885,10 +891,6 @@ main (int argc, char **argv)
max_depth
=
2
;
show_all
=
0
;
}
/* If folder is invoked by a name ending with "s" (e.g., folders),
`-all' is assumed */
else
if
(
program_invocation_short_name
[
strlen
(
program_invocation_short_name
)
-
1
]
==
's'
)
show_all
=
1
;
if
(
argc
-
index
==
1
)
{
...
...
Please
register
or
sign in
to post a comment