TSCH: fix a wrong return value

tsch_security_secure_frame() returns the length of MIC in case of
success. Otherwise, it is supposed to return 0. There was one case where
it returns 1 in an error handling block.
This commit is contained in:
Yasuyuki Tanaka 2016-12-14 16:50:28 +01:00
parent 4069ac5262
commit 3dc74dc632

View File

@ -160,7 +160,7 @@ tsch_security_secure_frame(uint8_t *hdr, uint8_t *outbuf,
if(!frame.fcf.security_enabled) {
/* Security is not enabled for this frame, we're done */
return 1;
return 0;
}
/* Read security key index */