summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.pp.se>2005-01-28 13:22:59 +0000
committerThomas Habets <thomas@habets.pp.se>2005-01-28 13:22:59 +0000
commit567b3731f028f88b799cc03063192654b4444013 (patch)
treefed87941e731f80a65b8712685d538277ea9d839
parent115ab1a2c3ac6075b176fe4928515c97b16715cf (diff)
downloadarping-567b3731f028f88b799cc03063192654b4444013.tar.gz
version 2.05: quiet should really be quiet
-rw-r--r--arping-2/arping.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/arping-2/arping.c b/arping-2/arping.c
index 234582d..a009221 100644
--- a/arping-2/arping.c
+++ b/arping-2/arping.c
@@ -12,7 +12,7 @@
*
* Also finds out IP of specified MAC
*
- * $Id: arping.c 1124 2004-08-29 18:44:15Z marvin $
+ * $Id: arping.c 1210 2005-01-28 13:22:59Z marvin $
*/
/*
* Copyright (C) 2000-2002 Thomas Habets <thomas@habets.pp.se>
@@ -89,7 +89,7 @@
#define IP_ALEN 4
#endif
-const float version = 2.04f;
+const float version = 2.05f;
static libnet_t *libnet = 0;
@@ -579,7 +579,9 @@ static void pingip_recv(const char *unused, struct pcap_pkthdr *h,
default:
fprintf(stderr, "arping: can't happen!\n");
}
- printf(beep?"\a\n":"\n");
+ if (display != QUIET) {
+ printf(beep?"\a\n":"\n");
+ }
numrecvd++;
}
}
@@ -660,7 +662,9 @@ static void pingmac_recv(const char *unused, struct pcap_pkthdr *h,
fprintf(stderr, "arping: can't-happen-bug\n");
sigint(0);
}
- printf(beep?"\a\n":"\n");
+ if (display != QUIET) {
+ printf(beep?"\a\n":"\n");
+ }
numrecvd++;
}
}