- Timestamp:
- Mar 19, 2017, 8:43:36 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r519 r520 1 1 4.2.1: 2 * fix build issue with musl libc (report & patch by A. Kuster) 2 3 * fix case sensitivity (tcp vs TCP, udp vs UDP) in portcheck 3 4 directives (reported by Anton H.) -
trunk/src/dnmalloc.c
r516 r520 822 822 * it may actually raise an error. 823 823 */ 824 #if defined(HAVE_MALLOC_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) 824 #if defined(HAVE_MALLOC_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && defined(__GLIBC__) 825 825 #include <malloc.h> 826 826 #else … … 5525 5525 struct timeval tv1; 5526 5526 struct timeval tv2; 5527 u _int rnd[(128 - 2*sizeof(struct timeval)) / sizeof(u_int)];5527 unsigned char rnd[(128 - 2*sizeof(struct timeval)) / sizeof(unsigned char)]; 5528 5528 } rdat; 5529 5529 #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
Note:
See TracChangeset
for help on using the changeset viewer.