From e0430f5c62f367e5a8e02755412977b02c3fc45e Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sun, 22 Jun 2014 01:34:28 +0200 Subject: [PATCH 1/1] libfstools: fix matching fstype the previous commit accidentally also matched against the trailing null byte of a constant string but should not. Signed-off-by: Daniel Golle --- libfstools/find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libfstools/find.c b/libfstools/find.c index d9df173..b50b633 100644 --- a/libfstools/find.c +++ b/libfstools/find.c @@ -97,8 +97,8 @@ find_mount_point(char *block, int mtd_only) t++; if (mtd_only && - strncmp(t, "jffs2", 6) && - strncmp(t, "ubifs", 6)) { + strncmp(t, "jffs2", 5) && + strncmp(t, "ubifs", 5)) { fclose(fp); fprintf(stderr, "block is mounted with wrong fs\n"); return NULL; -- 2.11.0