diff options
author | Glenn L McGrath | 2003-08-29 15:19:44 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-08-29 15:19:44 +0000 |
commit | 8ce8f9b482643689b31783b631a41caaa2275778 (patch) | |
tree | 99811b61f0cab0c4d6568897f223b9db82e00d43 /networking/udhcp/socket.c | |
parent | 2233685f0052492a391a5e5ab0f63c059c34c9ed (diff) | |
download | busybox-8ce8f9b482643689b31783b631a41caaa2275778.zip busybox-8ce8f9b482643689b31783b631a41caaa2275778.tar.gz |
Remove stray '\n'
Diffstat (limited to 'networking/udhcp/socket.c')
-rw-r--r-- | networking/udhcp/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/socket.c b/networking/udhcp/socket.c index a51a743..f12fa92 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; |