From d1952964c6a2068347434f2581e2cefa325ed72c Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Thu, 23 May 1996 14:55:12 +0000 Subject: (parse_opt): Honor ARGP_NO_ERRS. --- libstore/argp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libstore') diff --git a/libstore/argp.c b/libstore/argp.c index 71399474..c98774a8 100644 --- a/libstore/argp.c +++ b/libstore/argp.c @@ -139,8 +139,11 @@ parse_opt (int opt, char *arg, struct argp_state *state) if (err) { /* Use error instead of ERR because it's not a parsing error. */ - int exit_status = (state->flags & ARGP_NO_EXIT) ? 0 : 1; - error (exit_status, err, "%s", arg); + if (! (state->flags & ARGP_NO_ERRS)) + { + int exit_status = (state->flags & ARGP_NO_EXIT) ? 0 : 1; + error (exit_status, err, "%s", arg); + } return err; } else -- cgit v1.2.3