diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-11-30 18:30:56 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-11-30 18:30:56 +0000 |
commit | b61b447472b6a0a05feeb53f3953c3e8c93105c8 (patch) | |
tree | 4e7ffe0394eb2894a3ef456cb65c1e8bd47077ca /tools/firmware-utils/src/trx.c | |
parent | 2370126b9b5e139e7be753ffb5a44eda7b68e20d (diff) | |
download | upstream-b61b447472b6a0a05feeb53f3953c3e8c93105c8.tar.gz upstream-b61b447472b6a0a05feeb53f3953c3e8c93105c8.tar.bz2 upstream-b61b447472b6a0a05feeb53f3953c3e8c93105c8.zip |
firmware-utils/trx: fix two bugs
- fix crc32 calculation if -F was enabled.
- don't convert the crc32 to little endian twice.
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
SVN-Revision: 38962
Diffstat (limited to 'tools/firmware-utils/src/trx.c')
-rw-r--r-- | tools/firmware-utils/src/trx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/firmware-utils/src/trx.c b/tools/firmware-utils/src/trx.c index 8e95d98d7a..e3b6a3941f 100644 --- a/tools/firmware-utils/src/trx.c +++ b/tools/firmware-utils/src/trx.c @@ -273,11 +273,10 @@ int main(int argc, char **argv) } p->crc32 = crc32buf((char *) &p->flag_version, - (fsmark)?fsmark:cur_len - offsetof(struct trx_header, flag_version)); + ((fsmark)?fsmark:cur_len) - offsetof(struct trx_header, flag_version)); p->crc32 = STORE32_LE(p->crc32); p->len = STORE32_LE((fsmark) ? fsmark : cur_len); - p->len = STORE32_LE(p->len); /* restore TRXv2 bin-header */ if (trx_version == 2) { |