diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2015-01-21 16:37:54 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2015-01-21 16:37:54 +0000 |
commit | 1db8c76e0e5d6126400d3d2278118b8a2c1f816c (patch) | |
tree | a3271b8848ce2ed9e926cf80b7d9f98f577294e4 /devel/doxygen/files/patch-md5-dirdef | |
parent | Update to 2.2.7 (diff) |
Update to 1.8.9.1
PR: 196841
Submitted by: maintainer
Mini exp-run: self
Notes
Notes:
svn path=/head/; revision=377617
Diffstat (limited to 'devel/doxygen/files/patch-md5-dirdef')
-rw-r--r-- | devel/doxygen/files/patch-md5-dirdef | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/devel/doxygen/files/patch-md5-dirdef b/devel/doxygen/files/patch-md5-dirdef index 5789af46e2fa..26661181a192 100644 --- a/devel/doxygen/files/patch-md5-dirdef +++ b/devel/doxygen/files/patch-md5-dirdef @@ -1,19 +1,19 @@ ---- src/dirdef.cpp-orig 2014-06-11 20:11:16.000000000 +0200 -+++ src/dirdef.cpp 2014-06-11 20:11:59.000000000 +0200 +--- src/dirdef.cpp.orig 2015-01-03 22:38:57 UTC ++++ src/dirdef.cpp @@ -1,3 +1,4 @@ +#include <sys/types.h> #include "md5.h" #include "dirdef.h" -@@ -83,10 +84,8 @@ - QCString result; - +@@ -81,10 +82,8 @@ void DirDef::addFile(FileDef *fd) + static QCString encodeDirName(const QCString &anchor) + { // convert to md5 hash - uchar md5_sig[16]; QCString sigStr(33); - MD5Buffer((const unsigned char *)anchor.data(),anchor.length(),md5_sig); -- MD5SigToString(md5_sig,sigStr.data(),33); -+ MD5Data((const unsigned char *)anchor.data(),anchor.length(),sigStr.data()); +- MD5SigToString(md5_sig,sigStr.rawData(),33); ++ MD5Data((const unsigned char *)anchor.data(),anchor.length(),sigStr.rawData()); return sigStr; // old algorithm |