summaryrefslogtreecommitdiffstats
path: root/src/fpid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fpid.c')
-rw-r--r--src/fpid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fpid.c b/src/fpid.c
index 93bf205..af2724d 100644
--- a/src/fpid.c
+++ b/src/fpid.c
@@ -64,7 +64,8 @@ char *fpid_file(char *filename)
if (!memcmp(b+0x00, "\x00\x00\xa0\xe1\x00\x00\xa0\xe1", 8))
return pieces[PIECE_KERNEL];
else
- if (!memcmp(b+0x00, "\x85\x19\x01\xe0", 4)) {
+ // JFFS2 MAGIC
+ if (!memcmp(b+0x00, "\x85\x19", 2)) { //\x01\xe0", 4)) {
/*/ is jffs2 */
if (size < 0x300000)
return pieces[PIECE_INITFS];