diff options
author | Justus Winter <justus@gnupg.org> | 2016-10-05 10:24:59 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2016-10-05 10:24:59 +0200 |
commit | 3a3c1759297d3621663571dc85d2fb5d1d53b3b1 (patch) | |
tree | 3880da46eb102bede70cdfc023f58ecd3444ebe4 /trans/crash.c | |
parent | e6bffe8d286d49311c0d34acab4b9da867e0dfe8 (diff) |
Avoid fatal error handling in option parsers.
* trans/crash.c (parse_opt): Avoid 'error' in favor of the appropriate
argp error reporting mechanism.
* trans/remap.c (parse_opt): Likewise.
* utils/msgids.c (parse_opt): Likewise.
Diffstat (limited to 'trans/crash.c')
-rw-r--r-- | trans/crash.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/trans/crash.c b/trans/crash.c index 14783cf8..3c244515 100644 --- a/trans/crash.c +++ b/trans/crash.c @@ -640,7 +640,10 @@ parse_opt (int opt, char *arg, struct argp_state *state) { char *errp; if (! template_valid (arg, &errp)) - error (1, 0, "Invalid template: ...'%s'", errp); + { + argp_error (state, "Invalid template: ...'%s'", errp); + return EINVAL; + } } corefile_template = arg; break; |