diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2001-02-12 22:18:55 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2001-02-12 22:18:55 +0000 |
commit | 646ac529c3d679f49f7866ffd65dbd94c3a500a3 (patch) | |
tree | 338208fb17e7f5546e19943338efc8def9c432f6 /usermux | |
parent | 2888457f4fc3ebfd5ec6e4f6baf5e02223b1c5c6 (diff) |
auth/
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().
exec/
2001-02-12 Marcus Brinkmann <marcus@gnu.org>
* main.c: Change hurd version name from proc to exec.
(main): Add period to doc string.
ftpfs/
2001-02-12 Marcus Brinkmann <marcus@gnu.org>
* ftpfs.c: Include <version.h>. Add global variable
ARGP_PROGRAM_VERSION. Add period to DOC.
hostmux/
2001-02-12 Marcus Brinkmann <marcus@gnu.org>
* hostmux.c: Include <version.h>. Add global variable
ARGP_PROGRAM_VERSION. Add period to DOC.
usermux/
2001-02-12 Marcus Brinkmann <marcus@gnu.org>
* usermux.c (options): Include <version.h>. Add global variable
ARGP_PROGRAM_VERSION. Add period to DOC.
trans/
2001-02-12 Marcus Brinkmann <marcus@gnu.org>
* fifo.c: Make version string say `fifo', not `null'.
Add period to doc text in ARGP.
* firmlink.c: Add period to doc text in ARGP_DOC, convert
semi-colon to colon.
* magic.c (options): Add period to DOC.
* new-fifo.c (fifo_trans_parse_args): Add doc string to ARGP.
Include <version.h>, new global variable ARGP_PROGRAM_VERSION.
* crash.c: Include <version.h>, add global variable
ARGP_PROGRAM_VERSION.
* hello.c: Include <version.h>, add global variable
ARGP_PROGRAM_VERSION.
(hello_argp): Add doc string.
* hello-mt.c: Likewise.
* streamio.c: Add period to DOC. Change streamdev to streamio in
version string.
* password.c (main): Add period to doc string in ARGP.
Diffstat (limited to 'usermux')
-rw-r--r-- | usermux/ChangeLog | 5 | ||||
-rw-r--r-- | usermux/usermux.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/usermux/ChangeLog b/usermux/ChangeLog index 90b0a5f4..4e94e020 100644 --- a/usermux/ChangeLog +++ b/usermux/ChangeLog @@ -1,3 +1,8 @@ +2001-02-12 Marcus Brinkmann <marcus@gnu.org> + + * usermux.c (options): Include <version.h>. Add global variable + ARGP_PROGRAM_VERSION. Add period to DOC. + 2000-07-26 Mark Kettenis <kettenis@gnu.org> * Makefile (HURDLIBS): Reorder libs such that the threads lib diff --git a/usermux/usermux.c b/usermux/usermux.c index a7bc850a..5dafb8de 100644 --- a/usermux/usermux.c +++ b/usermux/usermux.c @@ -25,8 +25,12 @@ #include <sys/time.h> #include <hurd/paths.h> +#include <version.h> + #include "usermux.h" +const char *argp_program_version = STANDARD_HURD_VERSION (usermux); + int netfs_maxsymlinks = 25; volatile struct mapped_time_value *usermux_mapped_time; @@ -54,7 +58,7 @@ static const struct argp_option options[] = }; static const char args_doc[] = "[TRANSLATOR [ARG...]]"; static const char doc[] = - "A translator for invoking user-specific translators" + "A translator for invoking user-specific translators." "\vThis translator appears like a directory in which user names can be" " looked up, and will start TRANSLATOR to service each resulting node." " If no pattern occurs in the translator specification, the users's" |