diff options
Diffstat (limited to 'auth')
-rw-r--r-- | auth/ChangeLog | 5 | ||||
-rw-r--r-- | auth/auth.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/auth/ChangeLog b/auth/ChangeLog index dbf923a8..0ef5d5dc 100644 --- a/auth/ChangeLog +++ b/auth/ChangeLog @@ -1,3 +1,8 @@ +2001-02-12 Marcus Brinkmann <marcus@gnu.org> + + * auth.c (main): New variable ARGP defining a doc string. + Pass address of ARGP to argp_parse(). + 2000-07-26 Mark Kettenis <kettenis@gnu.org> * Makefile (HURDLIBS): Reorder libs such that the threads lib diff --git a/auth/auth.c b/auth/auth.c index dd164934..0176d30c 100644 --- a/auth/auth.c +++ b/auth/auth.c @@ -451,8 +451,9 @@ main (int argc, char **argv) process_t proc; mach_port_t hostpriv, masterdev; struct authhandle *firstauth; + struct argp argp = { 0, 0, 0, "Hurd standard authentication server." }; - argp_parse (0, argc, argv, 0, 0, 0); + argp_parse (&argp, argc, argv, 0, 0, 0); auth_bucket = ports_create_bucket (); authhandle_portclass = ports_create_class (&destroy_authhandle, 0); |