aboutsummaryrefslogtreecommitdiff
path: root/lib/tftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-11-16 22:00:17 +0100
committerDaniel Stenberg <daniel@haxx.se>2012-11-16 22:00:17 +0100
commitdb4215f14a9ee2aca01315fa8cf100915284b15d (patch)
treeb750a2eb074adf73e96eb0d5dd3b8408cce2e1bc /lib/tftp.c
parent32afaaef9342c5d599db295fe06c06f0678ed75d (diff)
tftp_rx: code style cleanup
Fixed checksrc warnings
Diffstat (limited to 'lib/tftp.c')
-rw-r--r--lib/tftp.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/tftp.c b/lib/tftp.c
index 832302ed1..3beabb4a1 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -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 */