From: Glenn L McGrath Date: Fri, 29 Aug 2003 15:19:44 +0000 (-0000) Subject: Remove stray '\n' X-Git-Tag: 1_00_pre3~45 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8ce8f9b482643689b31783b631a41caaa2275778;p=oweals%2Fbusybox.git Remove stray '\n' --- diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index d18cb423f..5c8b0d3f1 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -277,7 +277,7 @@ int udhcpc_main(int argc, char *argv[]) FD_SET(udhcp_signal_pipe[0], &rfds); if (tv.tv_sec > 0) { - DEBUG(LOG_INFO, "Waiting on select...\n"); + DEBUG(LOG_INFO, "Waiting on select..."); max_fd = udhcp_signal_pipe[0] > fd ? udhcp_signal_pipe[0] : fd; retval = select(max_fd + 1, &rfds, NULL, NULL, &tv); } else retval = 0; /* If we already timed out, fall through */ diff --git a/networking/udhcp/socket.c b/networking/udhcp/socket.c index a51a74369..f12fa9290 100644 --- a/networking/udhcp/socket.c +++ b/networking/udhcp/socket.c @@ -96,7 +96,7 @@ int listen_socket(unsigned int ip, int port, char *inf) struct sockaddr_in addr; int n = 1; - DEBUG(LOG_INFO, "Opening listen socket on 0x%08x:%d %s\n", ip, port, inf); + DEBUG(LOG_INFO, "Opening listen socket on 0x%08x:%d %s", ip, port, inf); if ((fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) { DEBUG(LOG_ERR, "socket call failed: %m"); return -1; @@ -136,7 +136,7 @@ int raw_socket(int ifindex) int fd; struct sockaddr_ll sock; - DEBUG(LOG_INFO, "Opening raw socket on ifindex %d\n", ifindex); + DEBUG(LOG_INFO, "Opening raw socket on ifindex %d", ifindex); if ((fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP))) < 0) { DEBUG(LOG_ERR, "socket call failed: %m"); return -1;