diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-05-13 17:39:37 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-05-13 17:39:37 +0000 |
commit | e787787ab06b9739e04c04320fd6749d10ca8d64 (patch) | |
tree | 3d01bfbe0e09d09a671b73c2acbeb1098236e578 /hostmux/hostmux.c | |
parent | 105f667e7a15b63ea62842f3a0b540c0f71f02a6 (diff) | |
download | hurd-e787787ab06b9739e04c04320fd6749d10ca8d64.tar.gz hurd-e787787ab06b9739e04c04320fd6749d10ca8d64.tar.bz2 hurd-e787787ab06b9739e04c04320fd6749d10ca8d64.zip |
libnetfs/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* io-version.c: New file.
* Makefile (IOSRCS): Add io-version.c.
* fsstubs.c (netfs_S_io_server_version): Function removed.
* netfs.h (netfs_server_name, netfs_server_version): New external
variables to be defined by the user.
ftpfs/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* ftpfs.c (netfs_server_name, netfs_server_version): New
variables.
hostmux/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* hostmux.c (netfs_server_name, netfs_server_version): New
variables.
nfs/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* main.c: Include <version.h>.
(netfs_server_name, netfs_server_version, argp_program_version):
New variables.
trans/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* fakeroot.c (netfs_server_name, netfs_server_version): New
variables.
usermux/
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* usermux.c (netfs_server_name, netfs_server_version): New
variables.
Diffstat (limited to 'hostmux/hostmux.c')
-rw-r--r-- | hostmux/hostmux.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; |