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
f61d2513
...
f61d251389bb2ceaafaa1e3cf29da4514e96acf9
authored
2002-11-15 14:36:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(parse_opt): Use argp_error to report errors
1 parent
cbe0784b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail.local/main.c
mail.local/main.c
View file @
f61d251
...
...
@@ -112,7 +112,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
case
'f'
:
if
(
from
!=
NULL
)
{
mu_error
(
"multiple --from options"
);
argp_error
(
state
,
"multiple --from options"
);
return
EX_USAGE
;
}
from
=
arg
;
...
...
Please
register
or
sign in
to post a comment