From: Daniel Golle Date: Sun, 15 Aug 2021 11:56:34 +0000 (+0100) Subject: uxc: fix help output X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ff9002fd3e168fe2161e7c6f8697216e2beda5a2;p=project%2Fprocd.git uxc: fix help output CLI option 'mounts' is wrongly called 'volumes' in help output. Fix that. Signed-off-by: Daniel Golle --- diff --git a/uxc.c b/uxc.c index 026fc7e..35036dd 100644 --- a/uxc.c +++ b/uxc.c @@ -94,7 +94,7 @@ static int usage(void) { printf(" [--autostart]\t\t\t\tstart on boot\n"); printf(" [--temp-overlay-size size]\t\tuse tmpfs overlay with {size}\n"); printf(" [--write-overlay-path path]\t\tuse overlay on {path}\n"); - printf(" [--volumes v1,v2,...,vN]\t\trequire volumes to be available\n"); + printf(" [--mounts v1,v2,...,vN]\t\trequire filesystems to be available\n"); printf("\tstart \t\t\t\t\tstart container \n"); printf("\tstate \t\t\t\t\tget state of container \n"); printf("\tkill []\t\t\t\tsend signal to container \n");