From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1JMWx7-0006rm-S8 for mharc-grub-devel@gnu.org; Tue, 05 Feb 2008 18:11:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JMWx6-0006p4-4z for grub-devel@gnu.org; Tue, 05 Feb 2008 18:11:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JMWx5-0006o7-7O for grub-devel@gnu.org; Tue, 05 Feb 2008 18:11:43 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JMWx4-0006nx-Sq for grub-devel@gnu.org; Tue, 05 Feb 2008 18:11:42 -0500 Received: from bigbox.boeglin.org ([88.191.20.48]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JMWx4-0005Z3-I0 for grub-devel@gnu.org; Tue, 05 Feb 2008 18:11:42 -0500 Received: by bigbox.boeglin.org (Postfix, from userid 1000) id C758F9408A; Wed, 6 Feb 2008 00:11:41 +0100 (CET) Date: Wed, 6 Feb 2008 00:11:41 +0100 From: Alexandre Boeglin To: The development of GRUB 2 Message-ID: <20080205231141.GD21086@boeglin.org> References: <20071118181403.GA11941@boeglin.org> <1c2f080f2d1aa07d2b518dc179bea58c@boeglin.org> <873asorcso.fsf@xs4all.nl> <20080205213409.GA21086@boeglin.org> <20080205221152.GB30724@thorin> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20080205221152.GB30724@thorin> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Content-Transfer-Encoding: quoted-printable X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) Subject: Re: grub2 efi patches X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Feb 2008 23:11:44 -0000 Le mar 05 f=E9v 2008 =E0 23:11:52 +0100, Robert Millan a =E9crit : > On Tue, Feb 05, 2008 at 10:34:09PM +0100, Alexandre Boeglin wrote: > > - "--" handling is trivial, I think this can be commited. >=20 > Please can you add a follow-up in the relevant thread(s) ? I get easil= y > confused in this gazillon of mails. Not to mention those who check the > list less frequently... This was just a one line fix: Index: normal/arg.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /sources/grub/grub2/normal/arg.c,v retrieving revision 1.7 diff -u -p -r1.7 arg.c --- normal/arg.c 21 Jul 2007 23:32:28 -0000 1.7 +++ normal/arg.c 18 Nov 2007 15:12:05 -0000 @@ -313,7 +313,7 @@ grub_arg_parse (grub_command_t cmd, int if (grub_strlen (arg) =3D=3D 2) { for (curarg++; curarg < argc; curarg++) - if (add_arg (arg) !=3D 0) + if (add_arg (argv[curarg]) !=3D 0) goto fail; break; }