mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 05:43:09 +02:00
fw/antorcha.c (send_image, param): update hash when sending salt
This commit is contained in:
parent
3241822a93
commit
558f5a7503
@ -242,7 +242,9 @@ static void send_image(struct atrf_dsc *dsc, void *buf, int len)
|
||||
|
||||
/* @@@ salt */
|
||||
packet(dsc, IMAGE, seq++, last, payload, PAYLOAD);
|
||||
hash_merge(payload, PAYLOAD);
|
||||
packet(dsc, IMAGE, seq++, last, payload, PAYLOAD);
|
||||
hash_merge(payload, PAYLOAD);
|
||||
hash_end();
|
||||
|
||||
/* hash */
|
||||
@ -370,7 +372,9 @@ static void param(struct atrf_dsc *dsc)
|
||||
|
||||
/* @@@ salt */
|
||||
packet(dsc, PARAM, 1, 4, payload, PAYLOAD);
|
||||
hash_merge(payload, PAYLOAD);
|
||||
packet(dsc, PARAM, 2, 4, payload, PAYLOAD);
|
||||
hash_merge(payload, PAYLOAD);
|
||||
hash_end();
|
||||
|
||||
/* hash */
|
||||
|
Loading…
Reference in New Issue
Block a user