diff options
author | Miles Bader <miles@gnu.org> | 1997-08-07 18:57:33 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-08-07 18:57:33 +0000 |
commit | 4166f60743727a95263936134fe7494b25694571 (patch) | |
tree | 18547004889684133d04645efbb78f09f3b7f636 /hostmux/hostmux.c | |
parent | fc8d3ae9fe3ae3830e6ff4d251001053e0123b83 (diff) |
(main):
Use ARGP_IN_ORDER to parse args.
Diffstat (limited to 'hostmux/hostmux.c')
-rw-r--r-- | hostmux/hostmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hostmux/hostmux.c b/hostmux/hostmux.c index 857e5e18..b5c4230e 100644 --- a/hostmux/hostmux.c +++ b/hostmux/hostmux.c @@ -74,7 +74,7 @@ main (int argc, char **argv) struct argp argp = { options, parse_opt, args_doc, doc }; /* Parse our command line arguments. */ - argp_parse (&argp, argc, argv, 0, 0, 0); + argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, 0); task_get_bootstrap_port (mach_task_self (), &bootstrap); netfs_init (); |