tftp: mode string is case independent
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
85b1f292c9
commit
faf7c62f1d
1 changed files with 2 additions and 1 deletions
|
@ -813,7 +813,8 @@ int tftpd_main(int argc UNUSED_PARAM, char **argv)
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
mode = local_file + strlen(local_file) + 1;
|
mode = local_file + strlen(local_file) + 1;
|
||||||
if (mode >= block_buf + result || strcmp(mode, "octet") != 0) {
|
/* RFC 1350 says mode string is case independent */
|
||||||
|
if (mode >= block_buf + result || strcasecmp(mode, "octet") != 0) {
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
# if ENABLE_FEATURE_TFTP_BLOCKSIZE
|
# if ENABLE_FEATURE_TFTP_BLOCKSIZE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue