Index: trunk/configure.ac
===================================================================
--- trunk/configure.ac	(revision 172)
+++ trunk/configure.ac	(revision 173)
@@ -13,5 +13,5 @@
 dnl start
 dnl
-AM_INIT_AUTOMAKE(samhain, 2.4.5)
+AM_INIT_AUTOMAKE(samhain, 2.4.5a)
 AC_DEFINE([SAMHAIN], 1, [Application is samhain])
 AC_CANONICAL_HOST
Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 172)
+++ trunk/docs/Changelog	(revision 173)
@@ -1,3 +1,7 @@
-2.4.5:
+2.4.5a:
+	* fix compile problem in dnmalloc.c (remove prototypes for
+	  memset/memcpy), problem reported by Juergen Daubert
+	
+2.4.5 (07-08-2008):
 	* testscripts: 'chmod -R' -> 'chmod -f -R', since Solaris 10
 	  bails out on a chmod on a dangling link
Index: trunk/src/dnmalloc.c
===================================================================
--- trunk/src/dnmalloc.c	(revision 172)
+++ trunk/src/dnmalloc.c	(revision 173)
@@ -97,7 +97,8 @@
    further to 1.0:
    Valgrind client requests inserted (#define USE_VALGRIND)
-   Fix malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
+   Fix: malloc_consolidate (nextchunk->fd, nextchunk->bck may be NULL)
    Portability: minsize = 32 bit on 64bit architecture
    Minor cleanups
+   Fix: eliminate prototypes for memset, memcpy (they're in string.h)
 
    There may be some bugs left in this version. please use with caution.
@@ -586,9 +587,8 @@
 
 #ifdef WIN32
-/* On Win32 memset and memcpy are already declared in windows.h */
+  /* On Win32 memset and memcpy are already declared in windows.h */
 #else
 #if __STD_C
-void* memset(void*, int, size_t);
-void* memcpy(void*, const void*, size_t);
+  /* Defined in string.h */
 #else
 Void_t* memset();
