diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-02-13 15:03:12 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-02-13 15:03:12 +0100 |
commit | 0c4e5977dfc32b54e452cd88a9cf14afde29c89d (patch) | |
tree | 210cf6c66dcaccb3bdec881d48ea5a5f4c51aa51 /networking | |
parent | 779df9f228789034ef23f856f855147bdb729958 (diff) | |
download | busybox-0c4e5977dfc32b54e452cd88a9cf14afde29c89d.tar.gz |
tftp: fix thinko in code shrink
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 4d608a6fb..043747d0d 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -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) |