diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-26 00:33:18 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-26 00:33:18 +0000 |
commit | 6b0658f5c09812367c0391e32d745ea2f04af8e4 (patch) | |
tree | db1a9349ac07c6ee9fce21ff46a896e7fea54826 | |
parent | 6376b583e2c318f2d34b71d9b71e314551b108d3 (diff) | |
download | busybox-6b0658f5c09812367c0391e32d745ea2f04af8e4.tar.gz |
Patch by Fillod Stephane, declare variables as static to not clobber
busybox namespace
-rw-r--r-- | networking/arping.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/networking/arping.c b/networking/arping.c index cf1596cd4..7279e8653 100644 --- a/networking/arping.c +++ b/networking/arping.c @@ -28,26 +28,26 @@ #define APPLET_NAME "arping" -struct in_addr src; -struct in_addr dst; -struct sockaddr_ll me; -struct sockaddr_ll he; -struct timeval last; -int dad; -int unsolicited; -int advert; -int quiet; -int quit_on_reply = 0; -int count = -1; -int timeout; -int unicasting; -int s; -int broadcast_only; -int sent; -int brd_sent; -int received; -int brd_recv; -int req_recv; +static struct in_addr src; +static struct in_addr dst; +static struct sockaddr_ll me; +static struct sockaddr_ll he; +static struct timeval last; +static int dad; +static int unsolicited; +static int advert; +static int quiet; +static int quit_on_reply = 0; +static int count = -1; +static int timeout; +static int unicasting; +static int s; +static int broadcast_only; +static int sent; +static int brd_sent; +static int received; +static int brd_recv; +static int req_recv; #define MS_TDIFF(tv1,tv2) ( ((tv1).tv_sec-(tv2).tv_sec)*1000 + \ ((tv1).tv_usec-(tv2).tv_usec)/1000 ) |