diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-04-04 15:33:55 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-04-04 15:33:55 +0000 |
commit | 2750290d86273b488f9cde947c84758214940db7 (patch) | |
tree | 5fe84fc8c2c2cb3ad9cc06767c8ea44d9825199f /libdiskfs | |
parent | 015e8531ef98117b532627ee801c7053ce0b2bb9 (diff) |
2007-04-04 Thomas Schwinge <tschwinge@gnu.org>
* opts-std-startup.c (parse_startup_opt)
<_diskfs_no_inherit_dir_group>: Swap the options into the correct
order. Reported by Olaf Buddenhagen <olafbuddenhagen@gmx.net>.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/ChangeLog | 6 | ||||
-rw-r--r-- | libdiskfs/opts-std-startup.c | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog index a4045f54..197ec5ed 100644 --- a/libdiskfs/ChangeLog +++ b/libdiskfs/ChangeLog @@ -1,3 +1,9 @@ +2007-04-04 Thomas Schwinge <tschwinge@gnu.org> + + * opts-std-startup.c (parse_startup_opt) + <_diskfs_no_inherit_dir_group>: Swap the options into the correct + order. Reported by Olaf Buddenhagen <olafbuddenhagen@gmx.net>. + 2006-06-28 Thomas Schwinge <tschwinge@gnu.org> * Makefile (HURDLIBS): Add `pager'. diff --git a/libdiskfs/opts-std-startup.c b/libdiskfs/opts-std-startup.c index e0569ef9..6fe28758 100644 --- a/libdiskfs/opts-std-startup.c +++ b/libdiskfs/opts-std-startup.c @@ -1,6 +1,8 @@ /* Standard startup-time command line parser - Copyright (C) 1995,96,97,98,99,2001 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2007 + Free Software Foundation, Inc. + Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -82,8 +84,8 @@ parse_startup_opt (int opt, char *arg, struct argp_state *state) TOGGLE (_diskfs_nosuid, 'S', OPT_SUID_OK); TOGGLE (_diskfs_noexec, 'E', OPT_EXEC_OK); TOGGLE (_diskfs_noatime, 'A', OPT_ATIME); - TOGGLE (_diskfs_no_inherit_dir_group, OPT_INHERIT_DIR_GROUP, - OPT_NO_INHERIT_DIR_GROUP); + TOGGLE (_diskfs_no_inherit_dir_group, OPT_NO_INHERIT_DIR_GROUP, + OPT_INHERIT_DIR_GROUP); #undef TOGGLE case 's': |