Switch to unified view

a/src/utils/md5.cpp b/src/utils/md5.cpp
...
...
15
 * MD5Context structure, pass it to MD5Init, call MD5Update as
15
 * MD5Context structure, pass it to MD5Init, call MD5Update as
16
 * needed on buffers full of bytes, and then call MD5Final, which
16
 * needed on buffers full of bytes, and then call MD5Final, which
17
 * will fill a supplied 16-byte array with the digest.
17
 * will fill a supplied 16-byte array with the digest.
18
 */
18
 */
19
19
20
//#include <config.h>
20
#include "autoconfig.h"
21
//#include <compat.h>
21
//#include <compat.h>
22
22
23
#include <sys/types.h>
23
#include <sys/types.h>
24
#include <string.h>
24
#include <string.h>
25
25