diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2025-07-18 10:38:18 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2025-07-18 10:42:09 +0200 |
| commit | ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5 (patch) | |
| tree | 31f7f986b70008d433749ed274e1bc42cfeb2018 | |
| parent | 27e1fc679e963baf929e9245294088f016f4eee3 (diff) | |
| download | busybox-w32-ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5.tar.gz busybox-w32-ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5.tar.bz2 busybox-w32-ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5.zip | |
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>
| -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 f5b4367ca..b698a9288 100644 --- a/networking/tftp.c +++ b/networking/tftp.c | |||
| @@ -250,7 +250,7 @@ static int tftp_blksize_check(const char *blksize_str, int maxsize) | |||
| 250 | return -1; | 250 | return -1; |
| 251 | } | 251 | } |
| 252 | # if ENABLE_TFTP_DEBUG | 252 | # if ENABLE_TFTP_DEBUG |
| 253 | bb_info_msg("using blksize %u", blksize); | 253 | bb_error_msg("using blksize %u", blksize); |
| 254 | # endif | 254 | # endif |
| 255 | return blksize; | 255 | return blksize; |
| 256 | } | 256 | } |
