aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-03 03:31:13 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-03 03:31:13 +0000
commit4c978631096a97e1cd68dfe40a1583de537112c4 (patch)
tree72450c173aeeb2b13c0965635f1867f76738f42d /networking
parente968fcd562da08591b0f7990b839174ad93fc7b4 (diff)
downloadbusybox-4c978631096a97e1cd68dfe40a1583de537112c4.tar.gz
assorted fixes for bugs found with randomconfig
Diffstat (limited to 'networking')
-rw-r--r--networking/ether-wake.c3
-rw-r--r--networking/ping.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/networking/ether-wake.c b/networking/ether-wake.c
index 7e3ef4948..f923149b9 100644
--- a/networking/ether-wake.c
+++ b/networking/ether-wake.c
@@ -107,7 +107,8 @@ static inline int get_wol_pw(const char *ethoptarg, unsigned char *wol_passwd);
int ether_wake_main(int argc, char *argv[])
{
- char *ifname = "eth0", *pass = NULL;
+ const char *ifname = "eth0";
+ char *pass = NULL;
unsigned long flags;
unsigned char wol_passwd[6];
int wol_passwd_sz = 0;
diff --git a/networking/ping.c b/networking/ping.c
index 53aabb6d7..ba4f585db 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -190,7 +190,7 @@ int ping_main(int argc, char **argv)
len_and_sockaddr *lsa;
#if ENABLE_PING6
sa_family_t af = AF_UNSPEC;
- while (++argv[0][0]) == '-') {
+ while (++argv[0][0] == '-') {
if (argv[0][1] == '4') {
af = AF_INET;
continue;