summaryrefslogtreecommitdiff
path: root/package/kismet/patches/patch-ifcontrol_cc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-02-05 17:29:33 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-02-05 17:29:33 +0100
commitd9759be6496da18607bf3068bca9464c44285d33 (patch)
tree8356bd8771d6904373ae50409c20da35ca9a5f8f /package/kismet/patches/patch-ifcontrol_cc
parent61629a527144e01ebcf25cffac48e48c01526af2 (diff)
fix some allmodconfig issues for mips target
Diffstat (limited to 'package/kismet/patches/patch-ifcontrol_cc')
-rw-r--r--package/kismet/patches/patch-ifcontrol_cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/kismet/patches/patch-ifcontrol_cc b/package/kismet/patches/patch-ifcontrol_cc
deleted file mode 100644
index a7028eb32..000000000
--- a/package/kismet/patches/patch-ifcontrol_cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- kismet-2010-01-R1.orig/ifcontrol.cc Mon Aug 31 01:36:19 2009
-+++ kismet-2010-01-R1/ifcontrol.cc Wed Feb 17 21:59:02 2010
-@@ -149,7 +149,7 @@ string Linux_GetSysDrv(const char *in_dev) {
- devlinklen = readlink(devlink.c_str(), devlinktarget, 511);
- if (devlinklen > 0) {
- devlinktarget[devlinklen] = '\0';
-- rind = rindex(devlinktarget, '/');
-+ rind = strchr(devlinktarget, '/');
- // If we found it and not at the end of the line
- if (rind != NULL && (rind - devlinktarget) + 1 < devlinklen)
- return string(rind + 1);