tftp: use bb_error_msg instead of info_msg for a debug message

This is the only use of bb_info_msg in tftp.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2025-07-18 10:38:18 +02:00
parent 27e1fc679e
commit ee2ef17cc7

View file

@ -250,7 +250,7 @@ static int tftp_blksize_check(const char *blksize_str, int maxsize)
return -1;
}
# if ENABLE_TFTP_DEBUG
bb_info_msg("using blksize %u", blksize);
bb_error_msg("using blksize %u", blksize);
# endif
return blksize;
}