Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #440, Replaces inaccurate CF_CFDP_ReceiveMessage comment #458

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions fsw/src/cf_cfdp_sbintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,7 @@ void CF_CFDP_ReceiveMessage(CF_Channel_t *chan)
ph->int_header.fin.cc, ph->pdu_header.destination_eid,
ph->pdu_header.sequence_num) != CF_SEND_PDU_NO_BUF_AVAIL_ERROR)
{
/* couldn't get output buffer -- don't care about a send error (oh well, can't send) but we
* do care that there was no message because chan->cur will be set to this transaction */
/* CF_CFDP_SendAck does not return CF_SEND_PDU_ERROR */
chan->cur = NULL; /* do not remember temp transaction for next time */
}

Expand Down
Loading