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
af7a57cd
...
af7a57cd99e588888bbf56cd163bcd80617540e5
authored
2003-02-22 22:26:40 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(parse_opt): Pass the argument to ARG_FOLDER without the leading '+'.
1 parent
019c60ec
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 @
af7a57c
...
...
@@ -38,7 +38,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
case
ARGP_KEY_ARG
:
if
(
arg
[
0
]
==
'+'
)
{
data
->
handler
(
ARG_FOLDER
,
arg
,
data
->
closure
);
data
->
handler
(
ARG_FOLDER
,
arg
+
1
,
data
->
closure
);
break
;
}
return
ARGP_ERR_UNKNOWN
;
...
...
Please
register
or
sign in
to post a comment