diff options
Diffstat (limited to 'ftpfs')
-rw-r--r-- | ftpfs/ChangeLog | 5 | ||||
-rw-r--r-- | ftpfs/ftpfs.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ftpfs/ChangeLog b/ftpfs/ChangeLog index 416bd9b7..7dd1a34c 100644 --- a/ftpfs/ChangeLog +++ b/ftpfs/ChangeLog @@ -1,3 +1,8 @@ +2001-02-12 Marcus Brinkmann <marcus@gnu.org> + + * ftpfs.c: Include <version.h>. Add global variable + ARGP_PROGRAM_VERSION. Add period to DOC. + 2001-01-07 Marcus Brinkmann <marcus@gnu.org> * dir.c (ftpfs_dir_create): Fix last change (calloc invocation). diff --git a/ftpfs/ftpfs.c b/ftpfs/ftpfs.c index 646f9b1b..63377021 100644 --- a/ftpfs/ftpfs.c +++ b/ftpfs/ftpfs.c @@ -25,12 +25,16 @@ #include <argz.h> #include <netdb.h> +#include <version.h> + #include <hurd/netfs.h> #include "ftpfs.h" +const char *argp_program_version = STANDARD_HURD_VERSION (ftpfs); + static char *args_doc = "REMOTE_FS [SERVER]"; -static char *doc = "Hurd ftp filesystem translator" +static char *doc = "Hurd ftp filesystem translator." "\vIf SERVER is not specified, an attempt is made to extract" " it from REMOTE_FS, using `SERVER:FS' notation." " SERVER can be a hostname, in which case anonymous ftp is used," |