diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-09-06 22:19:58 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-09-06 22:19:58 +0000 |
commit | 3647f0d4ecf714e8963ceec54aea7a95b82acd6e (patch) | |
tree | 7343165d919e24e03c88e610d8360e8716826463 /ext2fs | |
parent | 61a2d535351e8bc1f91477d0864035d89dd718f2 (diff) |
*** empty log message ***
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ChangeLog | 7 | ||||
-rw-r--r-- | ext2fs/ext2fs.c | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/ext2fs/ChangeLog b/ext2fs/ChangeLog index 40e34d85..60f5157f 100644 --- a/ext2fs/ChangeLog +++ b/ext2fs/ChangeLog @@ -1,3 +1,10 @@ +Fri Sep 6 16:03:11 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * ext2fs.c: Include <version.h>. + (diskfs_major_version, diskfs_minor_version, diskfs_edit_version): + Deleted variables. + (diskfs_server_version): New variable. + Thu Aug 29 16:59:51 1996 Miles Bader <miles@gnu.ai.mit.edu> Changes from ufs/dir.c: diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index ea0dfe7d..7c69a36b 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -27,6 +27,7 @@ #include <string.h> #include <error.h> #include <argz.h> +#include <version.h> #include "ext2fs.h" /* ---------------------------------------------------------------- */ @@ -40,9 +41,7 @@ int diskfs_shortcut_fifo = 1; int diskfs_shortcut_ifsock = 1; char *diskfs_server_name = "ext2fs"; -int diskfs_major_version = 0; -int diskfs_minor_version = 2; -int diskfs_edit_version = 1; +char *diskfs_server_version = HURD_VERSION; char *diskfs_extra_version = "ext2 " EXT2FS_VERSION; int diskfs_synchronous = 0; |