diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2012-01-15 11:21:56 +0100 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2012-01-15 11:21:56 +0100 |
commit | 3dc180799c659b0a5006745f18562285d452a2c7 (patch) | |
tree | 767c2412a5a9ec36beb59417bd14702185062b68 /package/aircrack-ng/patches/patch-src_osdep_linux_c | |
parent | 59cc5c401fb0a8807ea86046ceb26d06dc3c25c7 (diff) | |
parent | 8a429213619e4fef7ac66d08d4c2c7926a5a7a5a (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
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, 26 insertions, 0 deletions
diff --git a/package/aircrack-ng/patches/patch-src_osdep_linux_c b/package/aircrack-ng/patches/patch-src_osdep_linux_c new file mode 100644 index 000000000..84b816e13 --- /dev/null +++ b/package/aircrack-ng/patches/patch-src_osdep_linux_c @@ -0,0 +1,26 @@ + When search for wireless-tools, also check $PATH +--- aircrack-ng-1.1.orig/src/osdep/linux.c 2009-07-25 03:48:40.000000000 +0200 ++++ aircrack-ng-1.1/src/osdep/linux.c 2012-01-12 16:22:05.772390762 +0100 +@@ -244,6 +244,7 @@ static char * wiToolsPath(const char * t + "/usr/local/bin", + "/tmp" + }; ++ char *envpath, *token; + + nbelems = sizeof(paths) / sizeof(char *); + +@@ -254,6 +255,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; + } + |