aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-11-23 22:57:35 -0500
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>2025-11-24 08:39:32 -0500
commit947a19355cab82236c632bea24d08e187bfaf45c (patch)
tree7ac95010d4a9df5fa23e52eb187a241c70b49455
parent19d10eda1fc43f9d45429485ca28092e3d2e8bc9 (diff)
downloadutil-linux-947a19355cab82236c632bea24d08e187bfaf45c.tar.gz
mount: add missing --ro option info in usage message
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
-rw-r--r--sys-utils/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/mount.c b/sys-utils/mount.c
index 2450228d04..377cafcf84 100644
--- a/sys-utils/mount.c
+++ b/sys-utils/mount.c
@@ -583,7 +583,7 @@ static void __attribute__((__noreturn__)) usage(void)
fputs(_(" --onlyonce check if filesystem is already mounted on target\n"), out);
fputs(_(" -o, --options <list> comma-separated list of mount options\n"), out);
fputs(_(" -O, --test-opts <list> limit the set of filesystems (use with -a)\n"), out);
- fputs(_(" -r, --read-only mount the filesystem read-only (same as -o ro)\n"), out);
+ fputs(_(" -r, --ro, --read-only mount the filesystem read-only (same as -o ro)\n"), out);
fputs(_(" -t, --types <list> limit the set of filesystem types\n"), out);
fputs(_(" --source <src> explicitly specifies source (path, label, uuid)\n"), out);
fputs(_(" --target <target> explicitly specifies mountpoint\n"), out);