david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Bugfix: iobuf->data always points to the start of the allocated

portion, not to the bit we want to currently write to...
This commit is contained in:
Michael Brown 2007-06-28 18:38:50 +01:00
parent 5de837cc67
commit d465ae9785
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ static int tftp_send_rrq ( struct tftp_request *tftp ) {
rrq = iob_put ( iobuf, sizeof ( *rrq ) );
rrq->opcode = htons ( TFTP_RRQ );
iob_put ( iobuf,
snprintf ( iobuf->data, iob_tailroom ( iobuf ),
snprintf ( rrq->data, iob_tailroom ( iobuf ),
"%s%coctet%cblksize%c%d%ctsize%c0", path, 0,
0, 0, tftp_request_blksize, 0, 0 ) + 1 );