blob: 1b01d97e4175400eb72b68720109c69a840b9e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
diff --exclude='*~' -Naur mdcrack-1.2.orig/src/MD4/core3.c mdcrack-1.2/src/MD4/core3.c
--- mdcrack-1.2.orig/src/MD4/core3.c 2005-09-10 19:19:56.000000000 -0300
+++ mdcrack-1.2/src/MD4/core3.c 2005-09-10 19:28:47.000000000 -0300
@@ -1575,7 +1575,7 @@
ascii2bin(test, conv, hash);
Decode(result2, hash, 16);
- (unsigned int)bufferr2+=len+35;
+ bufferr2+=(len+35);
}
else
diff --exclude='*~' -Naur mdcrack-1.2.orig/src/MD5/core3.c mdcrack-1.2/src/MD5/core3.c
--- mdcrack-1.2.orig/src/MD5/core3.c 2005-09-10 19:19:56.000000000 -0300
+++ mdcrack-1.2/src/MD5/core3.c 2005-09-10 19:29:02.000000000 -0300
@@ -1537,7 +1537,7 @@
ascii2bin(test, conv, hash);
Decode(result2, hash, 16);
- (unsigned int)bufferr2+=len+35;
+ bufferr2+=len+35;
}
else
|