diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-04-04 10:34:02 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-04-04 10:34:02 +0200 |
commit | 5042ac8e5927d0089d3902b1c37e5bcc1565d053 (patch) | |
tree | cd2be3085808c5ac59dd70f9c610c6a40bfe3ffd /package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c | |
parent | 401dabf66529cfb5ab47b4c78d5e25fd493eef1f (diff) | |
parent | 4d569ed1a3305c7b7abe8fa4273cea3b559cc85a (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts:
BUGS
package/autoconf/Makefile
Diffstat (limited to 'package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c')
-rw-r--r-- | package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c b/package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c deleted file mode 100644 index a6f2505af..000000000 --- a/package/aircrack-ng/patches/patch-src_aircrack-ptw-lib_c +++ /dev/null @@ -1,21 +0,0 @@ -$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ ---- aircrack-ng-1.0-rc3.orig/src/aircrack-ptw-lib.c 2009-03-26 22:01:02.000000000 +0100 -+++ aircrack-ng-1.0-rc3/src/aircrack-ptw-lib.c 2009-05-01 15:52:04.000000000 +0200 -@@ -454,7 +454,7 @@ int PTW_computeKey(PTW_attackstate * sta - { - // Try the original klein attack first - for (i = 0; i < keylen; i++) { -- bzero(&table[i][0], sizeof(PTW_tableentry) * n); -+ memset(&table[i][0], 0, sizeof(PTW_tableentry) * n); - for (j = 0; j < n; j++) { - table[i][j].b = j; - } -@@ -602,7 +602,7 @@ PTW_attackstate * PTW_newattackstate() { - if (state == NULL) { - return NULL; - } -- bzero(state, sizeof(PTW_attackstate)); -+ memset(state, 0, sizeof(PTW_attackstate)); - for (i = 0; i < PTW_KEYHSBYTES; i++) { - for (k = 0; k < n; k++) { - state->table[i][k].b = k; |