Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
streetpea committed Feb 6, 2024
1 parent d36186d commit 9bf9601
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/takion.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,9 @@ static ChiakiErrorCode takion_handshake(ChiakiTakion *takion, uint32_t *seq_num_
if(err != CHIAKI_ERR_SUCCESS)
{
CHIAKI_LOGE(takion->log, "Takion failed to receive cookie ack");
return err;
err = takion_recv_message_cookie_ack(takion);
if(err != CHIAKI_ERR_SUCCESS)
return err;
}

CHIAKI_LOGI(takion->log, "Takion received cookie ack");
Expand Down

0 comments on commit 9bf9601

Please sign in to comment.