static int last_version = 0;
static char *buf = NULL;
static int ofs = 0;
-static int outfd = 0;
+static int outfd = -1;
static int mtdofs = 0;
static int target_ino = 0;
ri.usercompr = 0;
fd = open(name, 0);
- if (fd <= 0) {
+ if (fd < 0) {
fprintf(stderr, "File %s does not exist\n", name);
return;
}
pad(erasesize);
free(buf);
-#ifdef target_brcm
- trx_fixup(outfd, mtd);
-#endif
- return 0;
+ if (trx_fixup) {
+ trx_fixup(outfd, mtd);
+ }
+ return (mtdofs - ofs);
}
void mtd_parse_jffs2data(const char *buf, const char *dir)
int err = -1, fdeof = 0;
outfd = mtd_check_open(mtd);
- if (!outfd)
+ if (outfd < 0)
return -1;
if (quiet < 2)
err = 0;
-#ifdef target_brcm
- trx_fixup(outfd, mtd);
-#endif
+ if (trx_fixup) {
+ trx_fixup(outfd, mtd);
+ }
done:
close(outfd);