aboutsummaryrefslogtreecommitdiff
path: root/networking/tftp.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2025-07-18 10:38:18 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2025-07-18 10:42:09 +0200
commitee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5 (patch)
tree31f7f986b70008d433749ed274e1bc42cfeb2018 /networking/tftp.c
parent27e1fc679e963baf929e9245294088f016f4eee3 (diff)
downloadbusybox-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>
Diffstat (limited to '')
-rw-r--r--networking/tftp.c2
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}