diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/patches/diskfs_no_inherit_dir_group.patch | 14 |
2 files changed, 14 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 706dc757..baac287d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,7 @@ hurd (20090404-3) UNRELEASED; urgency=low just GPL. * debian/hurd.dirs: Add /etc/sysctl.d. * debian/control (hurd-udeb): Add Provides: *-modules. + * debian/patches/diskfs_no_inherit_dir_group.patch: Fix documentation too. [ Guillem Jover ] * Update make-new-tarball.sh to exclude git instead of CVS paths. diff --git a/debian/patches/diskfs_no_inherit_dir_group.patch b/debian/patches/diskfs_no_inherit_dir_group.patch index 34938e68..acb5e517 100644 --- a/debian/patches/diskfs_no_inherit_dir_group.patch +++ b/debian/patches/diskfs_no_inherit_dir_group.patch @@ -1,6 +1,7 @@ --- + opts-common.c | 2 +- libdiskfs/init-init.c | 3 +++ - 1 file changed, 3 insertions(+) + 2 file changed, 4 insertion(+), 1 deletion(-) --- a/libdiskfs/init-init.c +++ b/libdiskfs/init-init.c @@ -14,3 +15,14 @@ if (diskfs_boot_filesystem ()) /* This is a boot filesystem, we have to do some things specially. */ { +--- a/libdiskfs/opts-common.c ++++ b/libdiskfs/opts-common.c +@@ -52,7 +52,7 @@ const struct argp_option diskfs_common_options[] = + {"nogrpid", 0, 0, OPTION_ALIAS | OPTION_HIDDEN}, + {"sysvgroups", 0, 0, OPTION_ALIAS | OPTION_HIDDEN}, + {"inherit-dir-group", OPT_INHERIT_DIR_GROUP, 0, 0, +- "Create new nodes with gid of parent dir (default)"}, ++ "Create new nodes with gid of parent dir"}, + {"grpid", 0, 0, OPTION_ALIAS | OPTION_HIDDEN}, + {"bsdgroups", 0, 0, OPTION_ALIAS | OPTION_HIDDEN}, + {0, 0} |