From 947a19355cab82236c632bea24d08e187bfaf45c Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Sun, 23 Nov 2025 22:57:35 -0500 Subject: [PATCH] mount: add missing --ro option info in usage message Signed-off-by: Christian Goeschel Ndjomouo --- sys-utils/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/mount.c b/sys-utils/mount.c index 2450228d0..377cafcf8 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 comma-separated list of mount options\n"), out); fputs(_(" -O, --test-opts 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 limit the set of filesystem types\n"), out); fputs(_(" --source explicitly specifies source (path, label, uuid)\n"), out); fputs(_(" --target explicitly specifies mountpoint\n"), out); -- 2.47.3