mirror of https://github.com/mirror/busybox.git
tftp: fix thinko in code shrink
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>1_32_stable
parent
779df9f228
commit
0c4e5977df
|
@ -466,7 +466,7 @@ static int tftp_protocol(
|
|||
}
|
||||
cp = stpcpy(cp, remote_file) + 1;
|
||||
/* add "mode" part of the packet */
|
||||
cp = stpcpy(cp, "octet");
|
||||
cp = stpcpy(cp, "octet") + 1;
|
||||
|
||||
# if ENABLE_FEATURE_TFTP_BLOCKSIZE
|
||||
if (blksize == TFTP_BLKSIZE_DEFAULT && !want_transfer_size)
|
||||
|
|
Loading…
Reference in New Issue