Browse Source

Quick hack to be able to accept transfers from servers that don't

supply options.
tags/v0.9.3
Michael Brown 16 years ago
parent
commit
f770744ee0
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/net/udp/tftp.c

+ 2
- 0
src/net/udp/tftp.c View File

@@ -433,6 +433,8 @@ static int tftp_rx_data ( struct tftp_request *tftp,
433 433
 	data_len = iob_len ( iobuf );
434 434
 
435 435
 	/* Check for correct block */
436
+	if ( ( tftp->state == -1 ) && ( block == 1 ) )
437
+		tftp->state = 0;
436 438
 	if ( block != ( tftp->state + 1 ) ) {
437 439
 		DBGC ( tftp, "TFTP %p received out-of-order block %d "
438 440
 		       "(expecting %d)\n", tftp, block, ( tftp->state + 1 ) );

Loading…
Cancel
Save