[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] treat multiple slashes like one for JFS
From: |
Felix Zielcke |
Subject: |
Re: [PATCH] treat multiple slashes like one for JFS |
Date: |
Sun, 28 Sep 2008 16:19:50 +0200 |
Am Sonntag, den 28.09.2008, 15:32 +0200 schrieb Robert Millan:
> On Thu, Sep 25, 2008 at 05:17:06PM +0200, Felix Zielcke wrote:
> > Here's a patch to handle things like //boot/// for JFS which doestn't do
> > it currently but Linux does it.
> >
> > This was already brought up 2004 but I wonder why this isn't included
> > http://lists.gnu.org/archive/html/grub-devel/2004-08/msg00043.html
> >
> > Probable this can be right now commited but as always I just want to be
> > on the safe side.
>
> Assuming you tested it works, I don't see anything wrong in the code.
Yep I tested it first :)
> > + while (*next == '/')
> > + {
> > + next[0] = '\0';
> > + next++;
> > + }
>
> This seems to incorporate a one-liner of code from Tomas Ebenlendr, I'd
> recommend to mention that in the changelog.
Ok commited with a hint that it's based on code from Tomas Ebenlendr.