Messages in this thread Patch in this message |  | | Date | Mon, 13 May 2002 01:52:28 -0700 | From | Greg KH <> | Subject | Re: Changelogs on kernel.org |
| |
On Mon, May 13, 2002 at 11:31:42AM +0200, Matthias Andree wrote: > > I sent a first version of a Perl program to Linus, a copy of the program > is available at > http://mandree.home.pages.de/linux/kernel/lk-changelog.pl > (Yes I know the first $Log:$ entry is missing.)
Please make the following change to the patch, otherwise email address (or other things within a <>) in the body of the change message are improperly picked up.
Other than that minor problem, looks very nice.
thanks,
greg k-h
--- lk-changelog.pl~ Mon May 13 02:56:07 2002 +++ lk-changelog.pl Mon May 13 02:59:05 2002 @@ -81,7 +81,7 @@ while(<>) { chomp; - if (/<(.*?)>/) { + if (/^<(.*?)>/) { $author = $1; $first = 1; } elsif ($first) { - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |