Patch from Hideki IWAMOTO, output debugging messages to stderr

This commit is contained in:
Glenn L McGrath 2004-02-22 07:20:25 +00:00
parent 34e1469f24
commit d33278dea5

View File

@ -292,10 +292,10 @@ static inline int tftp(const int cmd, const struct hostent *host,
len = cp - buf; len = cp - buf;
#ifdef CONFIG_FEATURE_TFTP_DEBUG #ifdef CONFIG_FEATURE_TFTP_DEBUG
printf("sending %u bytes\n", len); fprintf(stderr, "sending %u bytes\n", len);
for (cp = buf; cp < &buf[len]; cp++) for (cp = buf; cp < &buf[len]; cp++)
printf("%02x ", *cp); fprintf(stderr, "%02x ", *cp);
printf("\n"); fprintf(stderr, "\n");
#endif #endif
if (sendto(socketfd, buf, len, 0, if (sendto(socketfd, buf, len, 0,
(struct sockaddr *) &sa, sizeof(sa)) < 0) { (struct sockaddr *) &sa, sizeof(sa)) < 0) {
@ -371,7 +371,7 @@ static inline int tftp(const int cmd, const struct hostent *host,
tmp = ntohs(*((unsigned short *) &buf[2])); tmp = ntohs(*((unsigned short *) &buf[2]));
#ifdef CONFIG_FEATURE_TFTP_DEBUG #ifdef CONFIG_FEATURE_TFTP_DEBUG
printf("received %d bytes: %04x %04x\n", len, opcode, tmp); fprintf(stderr, "received %d bytes: %04x %04x\n", len, opcode, tmp);
#endif #endif
if (opcode == TFTP_ERROR) { if (opcode == TFTP_ERROR) {
@ -420,7 +420,7 @@ static inline int tftp(const int cmd, const struct hostent *host,
opcode = TFTP_ACK; opcode = TFTP_ACK;
} }
#ifdef CONFIG_FEATURE_TFTP_DEBUG #ifdef CONFIG_FEATURE_TFTP_DEBUG
printf("using blksize %u\n", blksize); fprintf(stderr, "using blksize %u\n", blksize);
#endif #endif
tftp_bufsize = blksize + 4; tftp_bufsize = blksize + 4;
block_nr = 0; block_nr = 0;
@ -567,7 +567,7 @@ int tftp_main(int argc, char **argv)
port = bb_lookup_port(argv[optind + 1], "udp", 69); port = bb_lookup_port(argv[optind + 1], "udp", 69);
#ifdef CONFIG_FEATURE_TFTP_DEBUG #ifdef CONFIG_FEATURE_TFTP_DEBUG
printf("using server \"%s\", remotefile \"%s\", " fprintf(stderr, "using server \"%s\", remotefile \"%s\", "
"localfile \"%s\".\n", "localfile \"%s\".\n",
inet_ntoa(*((struct in_addr *) host->h_addr)), inet_ntoa(*((struct in_addr *) host->h_addr)),
remotefile, localfile); remotefile, localfile);