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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 20 Jan 2020 12:04:03 +0900
From:   Masami Hiramatsu <mhiramat@...nel.org>
To:     Steven Rostedt <rostedt@...dmis.org>
Cc:     Colin King <colin.king@...onical.com>,
        kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org,
        Masami Hiramatsu <mhiramat@...nel.org>
Subject: Re: [PATCH][next] tools: bootconfig: fix spelling mistake "faile"
 -> "failed"

Hi Steve,

Could you pick this fix too?

Thank you,

On Thu, 16 Jan 2020 19:02:39 +0900
Masami Hiramatsu <mhiramat@...nel.org> wrote:

> Hi Colin,
> 
> On Thu, 16 Jan 2020 09:22:06 +0000
> Colin King <colin.king@...onical.com> wrote:
> 
> > From: Colin Ian King <colin.king@...onical.com>
> > 
> > There are two spelling mistakes in printf statements, fix these.
> 
> Good catch!
> 
> Acked-by: Masami Hiramatsu <mhiramat@...nel.org>
> 
> Thanks!
> 
> > 
> > Signed-off-by: Colin Ian King <colin.king@...onical.com>
> > ---
> >  tools/bootconfig/main.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tools/bootconfig/main.c b/tools/bootconfig/main.c
> > index b8f174fd2a0a..91c9a5c0c499 100644
> > --- a/tools/bootconfig/main.c
> > +++ b/tools/bootconfig/main.c
> > @@ -140,7 +140,7 @@ int load_xbc_from_initrd(int fd, char **buf)
> >  		return 0;
> >  
> >  	if (lseek(fd, -8, SEEK_END) < 0) {
> > -		printf("Faile to lseek: %d\n", -errno);
> > +		printf("Failed to lseek: %d\n", -errno);
> >  		return -errno;
> >  	}
> >  
> > @@ -155,7 +155,7 @@ int load_xbc_from_initrd(int fd, char **buf)
> >  		return 0;
> >  
> >  	if (lseek(fd, stat.st_size - 8 - size, SEEK_SET) < 0) {
> > -		printf("Faile to lseek: %d\n", -errno);
> > +		printf("Failed to lseek: %d\n", -errno);
> >  		return -errno;
> >  	}
> >  
> > -- 
> > 2.24.0
> > 
> 
> 
> -- 
> Masami Hiramatsu <mhiramat@...nel.org>


-- 
Masami Hiramatsu <mhiramat@...nel.org>

Powered by blists - more mailing lists