Index: trunk/configure.ac
===================================================================
--- trunk/configure.ac	(revision 176)
+++ trunk/configure.ac	(revision 177)
@@ -13,5 +13,5 @@
 dnl start
 dnl
-AM_INIT_AUTOMAKE(samhain, 2.4.6)
+AM_INIT_AUTOMAKE(samhain, 2.4.6a)
 AC_DEFINE([SAMHAIN], 1, [Application is samhain])
 AC_CANONICAL_HOST
Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 176)
+++ trunk/docs/Changelog	(revision 177)
@@ -1,3 +1,7 @@
-2.4.6:
+2.4.6a:
+	* fix compile problem on Fedora 9 (reported by pierpaolo),
+	  'struct ucred' in sh_socket.c requires _GNU_SOURCE 
+	
+2.4.6 (27-08-2008):
 	* fix compile failure on win2k/cygwin (sh_unix_mlock prototype),
 	  reported by jhamilton
Index: trunk/src/sh_socket.c
===================================================================
--- trunk/src/sh_socket.c	(revision 176)
+++ trunk/src/sh_socket.c	(revision 177)
@@ -23,4 +23,7 @@
  * #define SH_DEBUG_SOCKET
  */
+#if defined(SH_WITH_SERVER) && defined(__linux__)
+#define _GNU_SOURCE
+#endif
 
 #include <stdio.h>
