Fix warnings for functions marked __attribute((warn_unused_result)).

This commit is contained in:
Guus Sliepen 2013-05-10 20:30:47 +02:00
parent 7b949262c4
commit 214060ef20
5 changed files with 32 additions and 13 deletions

View file

@ -273,8 +273,10 @@ bool send_ans_key(node_t *to) {
abort();
randomize(key, keylen);
cipher_set_key(to->incipher, key, false);
digest_set_key(to->indigest, key, keylen);
if(!cipher_set_key(to->incipher, key, false))
abort();
if(!digest_set_key(to->indigest, key, keylen))
abort();
bin2hex(key, key, keylen);
@ -418,8 +420,10 @@ bool ans_key_h(connection_t *c, const char *request) {
/* Update our copy of the origin's packet key */
cipher_set_key(from->outcipher, key, true);
digest_set_key(from->outdigest, key, keylen);
if(!cipher_set_key(from->outcipher, key, true))
return false;
if(!digest_set_key(from->outdigest, key, keylen))
return false;
from->status.validkey = true;
from->sent_seqno = 0;