mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Oleksij Rempel <linux@rempel-privat.de>
To: barebox@lists.infradead.org
Cc: Oleksij Rempel <linux@rempel-privat.de>
Subject: [PATCH v1] filetype: fix file type detection for Barebox MIPS
Date: Wed,  9 Aug 2017 17:55:27 +0200	[thread overview]
Message-ID: <20170809155527.2263-1-linux@rempel-privat.de> (raw)

Since there is no "0/" after "barebox" in the file header,
comparison won't stop on the right place.

Fix regression introduced by patch:
|commit 03939c0dfbf27d99e81d85e1bc0340fbee083d74
|Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
|Date:   Tue Jan 22 15:40:36 2013 +0100
|
| filetype: add is_barebox_mips_head support

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
---
 include/filetype.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/filetype.h b/include/filetype.h
index 709c1869f..c84905d78 100644
--- a/include/filetype.h
+++ b/include/filetype.h
@@ -77,7 +77,7 @@ static inline int is_barebox_arm_head(const char *head)
 #ifdef CONFIG_MIPS
 static inline int is_barebox_mips_head(const char *head)
 {
-	return !strcmp(head + MIPS_HEAD_MAGICWORD_OFFSET, "barebox");
+	return !strncmp(head + MIPS_HEAD_MAGICWORD_OFFSET, "barebox", 7);
 }
 #else
 static inline int is_barebox_mips_head(const char *head)
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

                 reply	other threads:[~2017-08-09 15:56 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170809155527.2263-1-linux@rempel-privat.de \
    --to=linux@rempel-privat.de \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox