lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Mon, 02 Sep 2019 12:24:20 -0700
From:   Joe Perches <joe@...ches.com>
To:     Sebastian Reichel <sre@...nel.org>,
        "Matwey V. Kornilov" <matwey@....msu.ru>,
        Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     matwey.kornilov@...il.com,
        "open list:SYSTEM RESET/SHUTDOWN DRIVERS" <linux-pm@...r.kernel.org>,
        open list <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] power: reset: reboot-mode: Fix author email format

On Mon, 2019-09-02 at 21:06 +0200, Sebastian Reichel wrote:
> Hi,
> 
> On Sat, Jul 13, 2019 at 06:42:48PM +0300, Matwey V. Kornilov wrote:
> > Closing angle bracket was missing.
> > 
> > Signed-off-by: Matwey V. Kornilov <matwey@....msu.ru>
> > ---
> 
> Thanks, queued.

This is relatively widespread.

There are 80 more of these in the kernel tree.

$ git grep -P 'MODULE_AUTHOR.*<[^>]+$' | wc -l
81

Here's a trivial little script to fix them all:

$ git grep -P -n 'MODULE_AUTHOR.*<[^>]+$' | \
  while read entry ; do \
    file=$(echo $entry|cut -f1 -d:); \
    line=$(echo $entry|cut -f2 -d:); \
    sed -i "${line}s/\");/>\");/" $file; \
  done

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ