aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--icmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/icmp.c b/icmp.c
index 8c27a8e..7135254 100644
--- a/icmp.c
+++ b/icmp.c
@@ -293,10 +293,10 @@ int icmp_send_ping(int fd, struct sockaddr *to, int tolen,
icp->un.echo.sequence = htons(seq);
icp->un.echo.id = getpid();
icp->checksum = in_cksum((u_short *) icp, len, 0);
-
+#if 0
printf("To %s: icmp_seq=%u bytes=%d\n",
pr_addr(to_in->sin_addr.s_addr), seq, len);
-
+#endif
return icmp_send(fd, to, tolen, (void *) packet, len);
}