summaryrefslogtreecommitdiff
path: root/package/kismet/patches/patch-ifcontrol_cc
diff options
context:
space:
mode:
Diffstat (limited to 'package/kismet/patches/patch-ifcontrol_cc')
-rw-r--r--package/kismet/patches/patch-ifcontrol_cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/kismet/patches/patch-ifcontrol_cc b/package/kismet/patches/patch-ifcontrol_cc
new file mode 100644
index 000000000..a7028eb32
--- /dev/null
+++ b/package/kismet/patches/patch-ifcontrol_cc
@@ -0,0 +1,11 @@
+--- 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);