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
ac4d2786
...
ac4d278658fa5812790c6f3f138b7cd3b5a404ad
authored
2003-02-20 13:59:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(parse_opt): Call the handler with ARG_FOLDER key if argument starts with +.
1 parent
fedafd6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mh/mh_argp.c
mh/mh_argp.c
View file @
ac4d278
...
...
@@ -38,7 +38,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
case
ARGP_KEY_ARG
:
if
(
arg
[
0
]
==
'+'
)
{
data
->
handler
(
'+'
,
arg
+
1
,
data
->
closure
);
data
->
handler
(
ARG_FOLDER
,
arg
,
data
->
closure
);
break
;
}
return
ARGP_ERR_UNKNOWN
;
...
...
Please
register
or
sign in
to post a comment