aboutsummaryrefslogtreecommitdiffstats
path: root/quota
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2013-04-25 15:16:34 +0000
committerRich Johnston <rjohnston@sgi.com>2013-04-25 10:57:48 -0500
commit30626ef667746c51a6b93e21fc95eb5607c0002a (patch)
treeaf30f91bdb08c0fb2c0c2ccb736a302fd195e21f /quota
parenteaa6a2bf5940dfa5e7a295834e68f317d4686218 (diff)
downloadxfsprogs-dev-30626ef667746c51a6b93e21fc95eb5607c0002a.tar.gz
xfsprogs: Fix up usage() errors and omissions
Add missing options and remove invalid options in usage() output strings. * Add -V to several usage() strings * Remove deprecated/invalid -n and -s otions from xfs_fsr's usage * Remove invalid -I option from xfs_growfs's usage * Add -n (O_NONBLOCK) option to xfs_io's usage * Add -e (exit on error) option to xfs_logprint's usage * Remove invalid -b option from xfs_mdrestore's usage * Add -N (no-op), -K (no discard), and -f (force) to mkfs.xfs's usage * Add -x (expert) option to xfs_quota's usage Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Rich Johnston <rjohnston@sgi.com> Signed-off-by: Rich Johnston <rjohnston@sgi.com>
Diffstat (limited to 'quota')
-rw-r--r--quota/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quota/init.c b/quota/init.c
index 0b481f7d4b..639e9e7f54 100644
--- a/quota/init.c
+++ b/quota/init.c
@@ -45,7 +45,7 @@ static void
usage(void)
{
fprintf(stderr,
- _("Usage: %s [-p prog] [-c cmd]... [-d project]... [path]\n"),
+ _("Usage: %s [-V] [-x] [-p prog] [-c cmd]... [-d project]... [path]\n"),
progname);
exit(1);
}