From: Keir Fraser Date: Fri, 28 May 2010 07:11:47 +0000 (+0100) Subject: xl: fix pci-detach usage message X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12071 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=596cf420ec86501466e5a705068640ad38b0a582;p=xen.git xl: fix pci-detach usage message "xl pci-detach -h" shows the usage for pci-attach Signed-off-by: Jeremy Fitzhardinge --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 85c6e1b129..4e547c7730 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -1532,7 +1532,7 @@ int main_pcidetach(int argc, char **argv) while ((opt = getopt(argc, argv, "h")) != -1) { switch (opt) { case 'h': - help("pci-attach"); + help("pci-detach"); exit(0); default: fprintf(stderr, "option not supported\n");