diff options
Diffstat (limited to 'apps/plugins/crypt_firmware.c')
| -rw-r--r-- | apps/plugins/crypt_firmware.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/crypt_firmware.c b/apps/plugins/crypt_firmware.c index 4dc236e..36689b7 100644 --- a/apps/plugins/crypt_firmware.c +++ b/apps/plugins/crypt_firmware.c @@ -253,9 +253,9 @@ enum plugin_status plugin_start(const void* parameter) return PLUGIN_ERROR; } - n = rb->write(fd, buf, 8); - n = rb->write(fd, hash, sizeof(hash)); - n = rb->write(fd, buf + 2, size); + n = rb->write(fd, buf, 8); + n = rb->write(fd, hash, sizeof(hash)); + n = rb->write(fd, buf + 2, size); rb->close(fd); } else if (memcmp(buf + 1,"nn2x",4)==0) { |