summaryrefslogtreecommitdiff
path: root/networking/arp.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:58 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:58 +0000
commitab2aea44479fd6f519bccd651a37f30e792b7593 (patch)
tree443636e12ffb52db95168013bbda80f78ed49fe6 /networking/arp.c
parent06c0a71d2315756db874e98bc4f760ca3283b6a6 (diff)
downloadbusybox-w32-ab2aea44479fd6f519bccd651a37f30e792b7593.tar.gz
busybox-w32-ab2aea44479fd6f519bccd651a37f30e792b7593.tar.bz2
busybox-w32-ab2aea44479fd6f519bccd651a37f30e792b7593.zip
preparatory patch for -Wwrite-strings #4
Diffstat (limited to 'networking/arp.c')
-rw-r--r--networking/arp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/arp.c b/networking/arp.c
index 6bd12656a..33191d89b 100644
--- a/networking/arp.c
+++ b/networking/arp.c
@@ -46,7 +46,7 @@ static const struct aftype *ap; /* current address family */
46static const struct hwtype *hw; /* current hardware type */ 46static const struct hwtype *hw; /* current hardware type */
47static int sockfd; /* active socket descriptor */ 47static int sockfd; /* active socket descriptor */
48static smallint hw_set; /* flag if hw-type was set (-H) */ 48static smallint hw_set; /* flag if hw-type was set (-H) */
49static char *device = ""; /* current device */ 49static const char *device = ""; /* current device */
50 50
51static const char *const options[] = { 51static const char *const options[] = {
52 "pub", 52 "pub",
@@ -317,7 +317,7 @@ static int arp_set(char **args)
317 317
318/* Print the contents of an ARP request block. */ 318/* Print the contents of an ARP request block. */
319static void 319static void
320arp_disp(char *name, char *ip, int type, int arp_flags, 320arp_disp(const char *name, char *ip, int type, int arp_flags,
321 char *hwa, char *mask, char *dev) 321 char *hwa, char *mask, char *dev)
322{ 322{
323 const struct hwtype *xhw; 323 const struct hwtype *xhw;
@@ -371,7 +371,7 @@ static int arp_show(char *name)
371 char dev[100]; 371 char dev[100];
372 int type, flags; 372 int type, flags;
373 FILE *fp; 373 FILE *fp;
374 char *hostname; 374 const char *hostname;
375 int num; 375 int num;
376 unsigned entries = 0, shown = 0; 376 unsigned entries = 0, shown = 0;
377 377