From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1SihGS-0005Ou-Hq for mharc-grub-devel@gnu.org; Sun, 24 Jun 2012 03:29:44 -0400 Received: from eggs.gnu.org ([208.118.235.92]:41497) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SihGP-0005OG-CR for grub-devel@gnu.org; Sun, 24 Jun 2012 03:29:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SihGN-00035H-N0 for grub-devel@gnu.org; Sun, 24 Jun 2012 03:29:40 -0400 Received: from qmta13.westchester.pa.mail.comcast.net ([76.96.59.243]:44440) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SihGN-000353-IV for grub-devel@gnu.org; Sun, 24 Jun 2012 03:29:39 -0400 Received: from omta23.westchester.pa.mail.comcast.net ([76.96.62.74]) by qmta13.westchester.pa.mail.comcast.net with comcast id S7VV1j0011c6gX85D7VdPR; Sun, 24 Jun 2012 07:29:37 +0000 Received: from [192.168.1.101] ([24.63.69.222]) by omta23.westchester.pa.mail.comcast.net with comcast id S7VZ1j0044nkFao3j7Vaiu; Sun, 24 Jun 2012 07:29:34 +0000 Message-ID: <4FE6C1DF.9050000@comcast.net> Date: Sun, 24 Jun 2012 03:29:35 -0400 From: Robert Mabee User-Agent: Mozilla/5.0 (X11; Linux i686; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: grub-devel@gnu.org Subject: Re: Release of 2.00~rc1 References: <4FE62E30.7080608@gmail.com> In-Reply-To: <4FE62E30.7080608@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 76.96.59.243 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jun 2012 07:29:43 -0000 On 06/23/2012 04:59 PM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > Hello, all. I'm proud to introduce 2.00~rc1 to you. > It's available as > ftp://alpha.gnu.org/gnu/grub/grub-2.00~rc1.tar.gz > or > ftp://alpha.gnu.org/gnu/grub/grub-2.00~rc1.tar.xz > As far as I'm aware all issues have been either postponed or resolved > correctly, so I'll release 2.00 on Monday. Give ~rc1 a spin over the > weekend and report any issues. > Missed this one, where the symbol belongs to some other interface, but has a value close enough to require an insane test (a filename containing a newline) to get incorrect results: === modified file 'grub-core/commands/wildcard.c' --- old/grub-core/commands/wildcard.c 2012-06-08 20:54:21 +0000 +++ new/grub-core/commands/wildcard.c 2012-06-24 06:55:33 +0000 @@ -153,7 +153,7 @@ buffer[i] = '\0'; grub_dprintf ("expand", "Regexp is %s\n", buffer); - if (regcomp (regexp, buffer, RE_SYNTAX_GNU_AWK)) + if (regcomp (regexp, buffer, REG_EXTENDED)) { grub_free (buffer); return 1;