fix up potential printf's with unsafe format strings

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2009-10-24 17:47:56 +02:00
parent 4b8b37f981
commit 0939f2ebd2
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ static unsigned sum_file(const char *file, unsigned type)
if (!bytes_read && !r)
/* no error */
break;
bb_perror_msg(file);
bb_simple_perror_msg(file);
return 0;
}

View File

@ -572,7 +572,7 @@ static int tftp_protocol(
strcpy((char*)error_pkt_str, bb_msg_read_error);
send_err_pkt:
if (error_pkt_str[0])
bb_error_msg((char*)error_pkt_str);
bb_error_msg("%s", (char*)error_pkt_str);
error_pkt[1] = TFTP_ERROR;
xsendto(socket_fd, error_pkt, 4 + 1 + strlen((char*)error_pkt_str),
&peer_lsa->u.sa, peer_lsa->len);