aboutsummaryrefslogtreecommitdiffstats
path: root/package/wificonf
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-07-09 16:17:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-07-09 16:17:12 +0000
commit86278453fa35217f0ce438c79aa1d8e83d10ac39 (patch)
treeae7b3a838564e42cf32f32bf211acc6a79f2e1d8 /package/wificonf
parent30c5c6daec4d417ca30f9f25592928d9078796f5 (diff)
downloadmaster-187ad058-86278453fa35217f0ce438c79aa1d8e83d10ac39.tar.gz
master-187ad058-86278453fa35217f0ce438c79aa1d8e83d10ac39.tar.bz2
master-187ad058-86278453fa35217f0ce438c79aa1d8e83d10ac39.zip
fix some small bugs in wificonf and wlcompat
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1385 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wificonf')
-rw-r--r--package/wificonf/wificonf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/package/wificonf/wificonf.c b/package/wificonf/wificonf.c
index acb5522cc8..e1df6675e2 100644
--- a/package/wificonf/wificonf.c
+++ b/package/wificonf/wificonf.c
@@ -36,21 +36,18 @@
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " too few arguments.\n"); \
- return; \
} while(0)
#define ABORT_ARG_TYPE(rname, request, arg) \
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " invalid argument \"%s\".\n", arg); \
- return; \
} while(0)
#define ABORT_ARG_SIZE(rname, request, max) \
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " argument too big (max %d)\n", max); \
- return; \
} while(0)
/*------------------------------------------------------------------*/
@@ -64,7 +61,6 @@
ERR_SET_EXT(rname, request); \
fprintf(stderr, " SET failed on device %-1.16s ; %s.\n", \
ifname, strerror(errno)); \
- return; \
} } while(0)
/*------------------------------------------------------------------*/
@@ -78,7 +74,6 @@
ERR_SET_EXT(rname, request); \
fprintf(stderr, " GET failed on device %-1.16s ; %s.\n", \
ifname, strerror(errno)); \
- return; \
} } while(0)
char *prefix;
@@ -115,8 +110,6 @@ int bcom_ioctl(int skfd, char *ifname, int cmd, void *buf, int len)
strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
ret = ioctl(skfd, SIOCDEVPRIVATE, &ifr);
- if (ret < 0)
- fprintf(stderr, "bcom_ioctl [cmd=%d, buf=%08x, len=%d] failed: %d\n", cmd, buf, len, ret);
return ret;
}