aboutsummaryrefslogtreecommitdiff
path: root/textproc/clucene
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2013-03-28 02:35:24 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2013-03-28 02:35:24 +0000
commit9239f3f0babf56f3150425076b712fc77ec805ca (patch)
tree5807d3b5c18577f4f4b734077f1743c1e349293d /textproc/clucene
parent3dc90020955fe59f4ac68d13322559c52ce3c88c (diff)
downloadports-9239f3f0babf56f3150425076b712fc77ec805ca.tar.gz
ports-9239f3f0babf56f3150425076b712fc77ec805ca.zip
Notes
Diffstat (limited to 'textproc/clucene')
-rw-r--r--textproc/clucene/files/patch-src__core__CLucene__util__MD5Digester.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/textproc/clucene/files/patch-src__core__CLucene__util__MD5Digester.cpp b/textproc/clucene/files/patch-src__core__CLucene__util__MD5Digester.cpp
index 03b46e24f10c..c354078b37ed 100644
--- a/textproc/clucene/files/patch-src__core__CLucene__util__MD5Digester.cpp
+++ b/textproc/clucene/files/patch-src__core__CLucene__util__MD5Digester.cpp
@@ -1,5 +1,5 @@
--- src/core/CLucene/util/MD5Digester.cpp.orig 2011-03-16 20:21:07.000000000 -0400
-+++ src/core/CLucene/util/MD5Digester.cpp 2013-03-27 22:19:22.000000000 -0400
++++ src/core/CLucene/util/MD5Digester.cpp 2013-03-27 21:18:10.000000000 -0400
@@ -72,18 +72,16 @@
// PrintMD5: Converts a completed md5 digest into a char* string.
char* PrintMD5(uint8_t md5Digest[16])
@@ -7,14 +7,13 @@
- char chBuffer[256];
- char chEach[10];
+ const char toHex[] = "0123456789abcdef";
-+ char chBuffer[sizeof(md5Digest) * 2 + 1];
++ char chBuffer[16 * 2 + 1];
int nCount;
- memset(chBuffer,0,256);
- memset(chEach, 0, 10);
-
-- for (nCount = 0; nCount < 16; nCount++)
-+ for (nCount = 0; nCount < sizeof(md5Digest); nCount++)
+ for (nCount = 0; nCount < 16; nCount++)
{
- cl_sprintf(chEach, 10, "%02x", md5Digest[nCount]);
- strncat(chBuffer, chEach, sizeof(chEach));