diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-07-09 16:17:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-09 16:17:12 +0000 |
commit | 86278453fa35217f0ce438c79aa1d8e83d10ac39 (patch) | |
tree | ae7b3a838564e42cf32f32bf211acc6a79f2e1d8 /package/wificonf | |
parent | 30c5c6daec4d417ca30f9f25592928d9078796f5 (diff) | |
download | upstream-86278453fa35217f0ce438c79aa1d8e83d10ac39.tar.gz upstream-86278453fa35217f0ce438c79aa1d8e83d10ac39.tar.bz2 upstream-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.c | 7 |
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; } |