summaryrefslogtreecommitdiff
path: root/hostmux
diff options
context:
space:
mode:
Diffstat (limited to 'hostmux')
-rw-r--r--hostmux/ChangeLog5
-rw-r--r--hostmux/hostmux.c6
2 files changed, 10 insertions, 1 deletions
diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog
index 0db0544d8..1edc482b5 100644
--- a/hostmux/ChangeLog
+++ b/hostmux/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-12 Marcus Brinkmann <marcus@gnu.org>
+
+ * hostmux.c: 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/hostmux/hostmux.c b/hostmux/hostmux.c
index a69b7cf43..fd5bc7487 100644
--- a/hostmux/hostmux.c
+++ b/hostmux/hostmux.c
@@ -24,8 +24,12 @@
#include <error.h>
#include <sys/time.h>
+#include <version.h>
+
#include "hostmux.h"
+const char *argp_program_version = STANDARD_HURD_VERSION (hostmux);
+
int netfs_maxsymlinks = 25;
volatile struct mapped_time_value *hostmux_mapped_time;
@@ -43,7 +47,7 @@ static const struct argp_option options[] =
};
static const char args_doc[] = "TRANSLATOR [ARG...]";
static const char doc[] =
- "A translator for invoking host-specific translators"
+ "A translator for invoking host-specific translators."
"\vThis translator appears like a directory in which hostnames can be"
" looked up, and will start TRANSLATOR to service each resulting node.";