diff options
author | kn <kn@cvs.openbsd.org> | 2020-01-17 10:50:21 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2020-01-17 10:50:21 +0000 |
commit | b94b3d558f937f334f27b626ab3db304b6b1ce08 (patch) | |
tree | 83035f9e2fc30ea65c015840853c59f1fb6d4180 /usr.sbin/ldomctl | |
parent | 948a32a6c36c39cb76e370e53951f97dd0f503ba (diff) |
Fix usage: domain is not optional with start command
Missed in previous commit
Diffstat (limited to 'usr.sbin/ldomctl')
-rw-r--r-- | usr.sbin/ldomctl/ldomctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldomctl/ldomctl.c b/usr.sbin/ldomctl/ldomctl.c index 3c81a3f8b83..be9fbd3f23d 100644 --- a/usr.sbin/ldomctl/ldomctl.c +++ b/usr.sbin/ldomctl/ldomctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldomctl.c,v 1.35 2020/01/16 14:55:19 kn Exp $ */ +/* $OpenBSD: ldomctl.c,v 1.36 2020/01/17 10:50:20 kn Exp $ */ /* * Copyright (c) 2012 Mark Kettenis @@ -131,7 +131,7 @@ usage(void) "\t%1$s dump|list|list-io\n" "\t%1$s init-system [-n] file\n" "\t%1$s create-vdisk -s size file\n" - "\t%1$s start [-c] [domain]\n" + "\t%1$s start [-c] domain\n" "\t%1$s console|panic|status|stop [domain]\n", getprogname()); |