From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeremy Fitzhardinge Subject: [PATCH 1/3] xl: fix network-attach command line parsing Date: Wed, 02 Jun 2010 16:09:48 -0700 Message-ID: <4C06E4BC.9090708@goop.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Xen-devel Cc: Stefano Stabellini List-Id: xen-devel@lists.xenproject.org Command line arguments start at argv[2]. Signed-off-by: Jeremy Fitzhardinge diff -r 8e9db04e9d40 tools/libxl/xl_cmdimpl.c --- a/tools/libxl/xl_cmdimpl.c Tue Jun 01 15:19:38 2010 -0700 +++ b/tools/libxl/xl_cmdimpl.c Wed Jun 02 11:34:39 2010 -0700 @@ -3308,11 +3308,11 @@ int i; unsigned int val; - if ((argc < 2) || (argc > 11)) { + if ((argc < 3) || (argc > 11)) { help("network-attach"); exit(0); } - while ((opt = getopt(argc, argv, "hl")) != -1) { + while ((opt = getopt(argc, argv, "h")) != -1) { switch (opt) { case 'h': help("network-attach"); @@ -3323,12 +3323,12 @@ } } - if (domain_qualifier_to_domid(argv[1], &domid, 0) < 0) { - fprintf(stderr, "%s is an invalid domain identifier\n", argv[1]); + if (domain_qualifier_to_domid(argv[2], &domid, 0) < 0) { + fprintf(stderr, "%s is an invalid domain identifier\n", argv[2]); exit(1); } init_nic_info(&nic, -1); - for (argv += 2, argc -= 2; argc > 0; ++argv, --argc) { + for (argv += 3, argc -= 3; argc > 0; ++argv, --argc) { if (!strncmp("type=", *argv, 5)) { if (!strncmp("vif", (*argv) + 5, 4)) { nic.nictype = NICTYPE_VIF;