mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 17:41:55 +00:00
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:
parent
5de837cc67
commit
d465ae9785
@ -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 );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user