From: Olaf Hering Date: Mon, 20 Feb 2012 18:09:03 +0000 (+0000) Subject: xl: fix xl create/cpupool-create -f help output X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~8912 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5ff9ae9094a6b3ee833699738f299a35037a468d;p=xen.git xl: fix xl create/cpupool-create -f help output xl create -f domU.cfg does not need an equal sign. This applies also to xl cpupool-create. Signed-off-by: Olaf Hering Committed-by: Ian Jackson --- diff --git a/tools/libxl/xl_cmdtable.c b/tools/libxl/xl_cmdtable.c index 35e4939737..888180954a 100644 --- a/tools/libxl/xl_cmdtable.c +++ b/tools/libxl/xl_cmdtable.c @@ -25,7 +25,7 @@ struct cmd_spec cmd_table[] = { "-h Print this help.\n" "-p Leave the domain paused after it is created.\n" "-c Connect to the console after the domain is created.\n" - "-f=FILE, --defconfig=FILE\n Use the given configuration file.\n" + "-f FILE, --defconfig=FILE\n Use the given configuration file.\n" "-q, --quiet Quiet.\n" "-n, --dryrun Dry run - prints the resulting configuration\n" " (deprecated in favour of global -N option).\n" @@ -364,7 +364,7 @@ struct cmd_spec cmd_table[] = { "Create a CPU pool based an ConfigFile", "[options] [vars]", "-h, --help Print this help.\n" - "-f=FILE, --defconfig=FILE Use the given configuration file.\n" + "-f FILE, --defconfig=FILE Use the given configuration file.\n" "-n, --dryrun Dry run - prints the resulting configuration.\n" " (deprecated in favour of global -N option)." },