Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 418)
+++ trunk/docs/Changelog	(revision 419)
@@ -2,4 +2,5 @@
 	* Fix the RPM spec file for --enable-network=client and no password
 	  (reported by Mitch St Martin)
+	* Fix build error with Linux audit (reported by Andy Jack)
 
 3.0.8:
Index: trunk/src/sh_audit.c
===================================================================
--- trunk/src/sh_audit.c	(revision 418)
+++ trunk/src/sh_audit.c	(revision 419)
@@ -278,5 +278,5 @@
 {
   struct aud_list * this = SH_ALLOC(sizeof(struct aud_list));
-  this->file = sh_utils_strdup(file);
+  this->file = sh_util_strdup(file);
   this->next = mark_these;
   return;
@@ -312,5 +312,5 @@
 	     {
 	       SH_FREE(this->file);
-	       this->file = sh_utils_strdup(file);
+	       this->file = sh_util_strdup(file);
 	       ret = 0;
 	     }
@@ -325,5 +325,4 @@
 void sh_audit_mark (char * file)
 {
-  struct aud_list * all  = mark_these;
   struct aud_list * this = mark_these;
 
