[git commit] tftp: use bb_error_msg instead of info_msg for a debug message

Denys Vlasenko vda.linux at googlemail.com
Fri Jul 18 08:42:09 UTC 2025


commit: https://git.busybox.net/busybox/commit/?id=ee2ef17cc72e606c8d7f4e25fcc99ff8085d57d5
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

This is the only use of bb_info_msg in tftp.

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/tftp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
 		return -1;
 	}
 # if ENABLE_TFTP_DEBUG
-	bb_info_msg("using blksize %u", blksize);
+	bb_error_msg("using blksize %u", blksize);
 # endif
 	return blksize;
 }


More information about the busybox-cvs mailing list