From a9079b20c02aac0ec112e9186ebd9bd11c295056 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 19 Mar 1996 00:46:36 +0000 Subject: (main): Pass new arg to argp_parse. Also use argp_usage correctly. --- utils/portinfo.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'utils/portinfo.c') diff --git a/utils/portinfo.c b/utils/portinfo.c index cef93861..50910333 100644 --- a/utils/portinfo.c +++ b/utils/portinfo.c @@ -467,7 +467,8 @@ main (int argc, char **argv) break; case ARGP_KEY_NO_ARGS: - argp_error (state->argp, "No process specified"); + argp_error (state, "No process specified"); + return ED; /* Some non-EINVAL error. */ case ARGP_KEY_ARG: if (state->arg_num == 0) @@ -523,7 +524,7 @@ main (int argc, char **argv) const struct argp argp = { options, parse_opt, args_doc, doc }; /* Parse our arguments. */ - argp_parse (&argp, argc, argv, 0, 0); + argp_parse (&argp, argc, argv, 0, 0, 0); exit (0); } -- cgit v1.2.3