aboutsummaryrefslogtreecommitdiff
path: root/networking/arping.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-03 12:29:12 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-03 12:29:12 +0000
commitebd13558289657b3ee81be555ab194413ad7e023 (patch)
tree07dad6767842f2d2d197892c8704b4273a2fb954 /networking/arping.c
parenta0f75e2bba69799dfc587b542593c30c91caf8a3 (diff)
downloadbusybox-ebd13558289657b3ee81be555ab194413ad7e023.tar.gz
- coalesce printf calls.
text data bss dec hex filename 3474 4 96 3574 df6 networking/arping.o.orig 3424 4 96 3524 dc4 networking/arping.o
Diffstat (limited to 'networking/arping.c')
-rw-r--r--networking/arping.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/networking/arping.c b/networking/arping.c
index 6bcbc7044..48c14f15c 100644
--- a/networking/arping.c
+++ b/networking/arping.c
@@ -112,8 +112,10 @@ static int send_pack(int sock, struct in_addr *src_addr,
static void finish(void)
{
if (!(cfg&quiet)) {
- printf("Sent %d probes (%d broadcast(s))\n", sent, brd_sent);
- printf("Received %d repl%s", received, (received > 1) ? "ies" : "y");
+ printf("Sent %d probes (%d broadcast(s))\n"
+ "Received %d repl%s",
+ sent, brd_sent,
+ received, (received > 1) ? "ies" : "y");
if (brd_recv || req_recv) {
printf(" (");
if (req_recv)
@@ -221,12 +223,11 @@ static int recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
gettimeofday(&tv, NULL);
- printf("%s ",
- FROM->sll_pkttype == PACKET_HOST ? "Unicast" : "Broadcast");
- printf("%s from ",
- ah->ar_op == htons(ARPOP_REPLY) ? "reply" : "request");
- printf("%s ", inet_ntoa(src_ip));
- printf("[%s]", ether_ntoa((struct ether_addr *) p));
+ printf("%s %s from %s [%s]",
+ FROM->sll_pkttype == PACKET_HOST ? "Unicast" : "Broadcast",
+ ah->ar_op == htons(ARPOP_REPLY) ? "reply" : "request",
+ inet_ntoa(src_ip),
+ ether_ntoa((struct ether_addr *) p));
if (dst_ip.s_addr != src.s_addr) {
printf("for %s ", inet_ntoa(dst_ip));
s_printed = 1;
@@ -421,9 +422,9 @@ int arping_main(int argc, char **argv)
memset(he.sll_addr, -1, he.sll_halen);
if (!(cfg&quiet)) {
- printf("ARPING to %s", inet_ntoa(dst));
- printf(" from %s via %s\n", inet_ntoa(src),
- device ? device : "unknown");
+ printf("ARPING to %s from %s via %s\n",
+ inet_ntoa(dst), inet_ntoa(src),
+ device ? device : "unknown");
}
if (!src.s_addr && !(cfg&dad)) {