diff options
Diffstat (limited to 'hostmux')
-rw-r--r-- | hostmux/ChangeLog | 5 | ||||
-rw-r--r-- | hostmux/hostmux.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog index d2df93e7..064785d6 100644 --- a/hostmux/ChangeLog +++ b/hostmux/ChangeLog @@ -1,3 +1,8 @@ +2002-05-13 Marcus Brinkmann <marcus@gnu.org> + + * hostmux.c (netfs_server_name, netfs_server_version): New + variables. + 2002-03-10 Neal H Walfield <neal@cs.uml.edu> * mux.c (lookup_addrinfo): Renamed from lookup_hostent. Change HE diff --git a/hostmux/hostmux.c b/hostmux/hostmux.c index fd5bc748..b0a72693 100644 --- a/hostmux/hostmux.c +++ b/hostmux/hostmux.c @@ -1,6 +1,6 @@ /* Multiplexing filesystems by host - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 2002 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> This file is part of the GNU Hurd. @@ -30,6 +30,8 @@ const char *argp_program_version = STANDARD_HURD_VERSION (hostmux); +char *netfs_server_name = "hostmux"; +char *netfs_server_version = HURD_VERSION; int netfs_maxsymlinks = 25; volatile struct mapped_time_value *hostmux_mapped_time; |