Explorar el Código

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

supply options.
tags/v0.9.3
Michael Brown hace 16 años
padre
commit
f770744ee0
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      src/net/udp/tftp.c

+ 2
- 0
src/net/udp/tftp.c Ver fichero

@@ -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…
Cancelar
Guardar