mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 16:20:33 -04:00
- regen patches by 'make makepatch' - adjust consumers which affected by new doxygen styles - take maintainersip Changelog: https://www.doxygen.nl/manual/changelog.html#log_1_9_0 PR: 242347 Submitted by: fluffy Reported by: Naram Qashat (ex-maintainer) Exp-run by: antoine
24 lines
814 B
Text
24 lines
814 B
Text
--- src/membergroup.cpp.orig 2020-11-28 16:00:56 UTC
|
|
+++ src/membergroup.cpp
|
|
@@ -27,6 +27,7 @@
|
|
#include "doxygen.h"
|
|
#include "docparser.h"
|
|
#include "entry.h"
|
|
+#include <sys/types.h>
|
|
#include "md5.h"
|
|
|
|
MemberGroup::MemberGroup(const Definition *container,int id,const char *hdr,const char *d,const char *docFile,int docLine)
|
|
@@ -319,12 +320,10 @@ void MemberGroup::setInGroup(bool b)
|
|
|
|
QCString MemberGroup::anchor() const
|
|
{
|
|
- uchar md5_sig[16];
|
|
QCString sigStr(33);
|
|
QCString locHeader = grpHeader;
|
|
if (locHeader.isEmpty()) locHeader="[NOHEADER]";
|
|
- MD5Buffer((const unsigned char *)locHeader.data(),locHeader.length(),md5_sig);
|
|
- MD5SigToString(md5_sig,sigStr.rawData(),33);
|
|
+ MD5Data((const unsigned char *)locHeader.data(),locHeader.length(),sigStr.rawData());
|
|
return "amgrp"+sigStr;
|
|
}
|
|
|