diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 17:16:55 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 17:16:55 +0000 |
commit | 535ef6a2f93488dcaa6f5c0f8f9603b2d20e17ce (patch) | |
tree | 893e744f4e35e399e719b9b4e02610b798a30304 /libdiskfs/opts-std-runtime.c | |
parent | 21aebe1bd7180edc7f68d7f71b2e1319a9c33094 (diff) |
(std_runtime_options):
Change --remount to --update (keep --remount as a deprecated alias).
<argp.h>:
New include.
Diffstat (limited to 'libdiskfs/opts-std-runtime.c')
-rw-r--r-- | libdiskfs/opts-std-runtime.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libdiskfs/opts-std-runtime.c b/libdiskfs/opts-std-runtime.c index 9a3ee80a..2de309bc 100644 --- a/libdiskfs/opts-std-runtime.c +++ b/libdiskfs/opts-std-runtime.c @@ -18,12 +18,15 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <argp.h> + #include "priv.h" static const struct argp_option std_runtime_options[] = { - {"remount", 'u', 0, 0, "Flush any meta-data cached in core"}, + {"update", 'u', 0, 0, "Flush any meta-data cached in core"}, + {"remount", 0, 0, OPTION_HIDDEN | OPTION_ALIAS}, /* deprecated */ {0, 0} }; |