tftp_rx: code style cleanup

Fixed checksrc warnings
This commit is contained in:
Daniel Stenberg 2012-11-16 22:00:17 +01:00
parent 32afaaef93
commit db4215f14a
1 changed files with 5 additions and 6 deletions

View File

@ -591,15 +591,14 @@ static CURLcode tftp_rx(tftp_state_data_t *state, tftp_event_t event)
case TFTP_EVENT_DATA:
/* Is this the block we expect? */
rblock = getrpacketblock(&state->rpacket);
if( NEXT_BLOCKNUM(state->block) == rblock ) {
if(NEXT_BLOCKNUM(state->block) == rblock) {
/* This is the expected block. Reset counters and ACK it. */
state->retries = 0;
}
else if( state->block == rblock ) {
/* This is the last recently received block again. Log it and ACK it again. */
infof(data,
"Received last DATA packet block %d again.\n",
rblock);
else if(state->block == rblock) {
/* This is the last recently received block again. Log it and ACK it
again. */
infof(data, "Received last DATA packet block %d again.\n", rblock);
}
else {
/* totally unexpected, just log it */