diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-02-22 08:23:35 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-02-22 08:24:48 +0100 |
commit | b33a5a985f0413a212da7f5d9d46e8a8db06da4c (patch) | |
tree | 280d551ca5c056b1767c2d01a5c3b86955e13d62 /package/aircrack-ng/patches/patch-src_osdep_linux_c | |
parent | dd4eb6e832b789129e30a511a1e4f6b63f18a494 (diff) |
aircrack-ng: update to 1.7
Diffstat (limited to 'package/aircrack-ng/patches/patch-src_osdep_linux_c')
-rw-r--r-- | package/aircrack-ng/patches/patch-src_osdep_linux_c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/aircrack-ng/patches/patch-src_osdep_linux_c b/package/aircrack-ng/patches/patch-src_osdep_linux_c deleted file mode 100644 index 1811eb90a..000000000 --- a/package/aircrack-ng/patches/patch-src_osdep_linux_c +++ /dev/null @@ -1,26 +0,0 @@ - When search for wireless-tools, also check $PATH ---- aircrack-ng-1.2-rc4.orig/src/osdep/linux.c 2016-02-15 00:34:57.000000000 +0100 -+++ aircrack-ng-1.2-rc4/src/osdep/linux.c 2017-06-06 20:36:32.460367791 +0200 -@@ -263,6 +263,7 @@ static char * wiToolsPath(const char * t - "/usr/local/bin", - "/tmp" - }; -+ char *envpath, *token; - - // Also search in other known location just in case we haven't found it yet - nbelems = sizeof(paths) / sizeof(char *); -@@ -273,6 +274,14 @@ static char * wiToolsPath(const char * t - return path; - } - -+ /* search again in $PATH */ -+ for (envpath = getenv("PATH"); ; envpath = NULL) { -+ if ((token = strtok(envpath, ":")) == NULL) -+ break; -+ if ((path = searchInside(token, tool)) != NULL) -+ return path; -+ } -+ - return NULL; - } - |