Index: trunk/Makefile.in
===================================================================
--- trunk/Makefile.in	(revision 160)
+++ trunk/Makefile.in	(revision 161)
@@ -1105,5 +1105,5 @@
 #	rm x_`echo $< |sed 's%.*/%%'`
 
-$(OBJECTS):
+$(OBJECTS): encode
 	@echo "./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c --> x_`echo $@ |sed 's%\.o$$%%'`.c"; \
 	./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c; \
Index: trunk/docs/Changelog
===================================================================
--- trunk/docs/Changelog	(revision 160)
+++ trunk/docs/Changelog	(revision 161)
@@ -1,2 +1,6 @@
+2.4.3:
+	* Makefile.in: fix missing dependency on 'encode' for $(OBJECTS)
+	  (reported by Matthias Ehrmann)
+
 2.4.2:
 	* fix broken option --with-checksum (reported by halosfan),
Index: trunk/docs/HOWTO-write-modules.html
===================================================================
--- trunk/docs/HOWTO-write-modules.html	(revision 160)
+++ trunk/docs/HOWTO-write-modules.html	(revision 161)
@@ -662,6 +662,7 @@
 When checking files, samhain will walk the database to find files that
 are in the database, but have been deleted from the disk. If you enter
-non-file data, you need to mark it as such by using a key that
-starts with a 'K'.
+data, you need to mark it as such by using a key that
+starts with something else but '/', otherwise samhain will complain
+if it has not been checked during the file check.
 </p>
 <pre>
@@ -682,5 +683,5 @@
 (max. (PATH_MAX-1)/2). As noted
 above, you need to supply a key (stored as the 'filepath', which should
-start with the character 'K'). To retrieve data, you can use
+start with a character different from '/'). To retrieve data, you can use
 'sh_hash_db2pop'. The return value is either NULL (if no string was
 stored under this key), or the stored string (length returned in 'size').
Index: trunk/src/sh_getopt.c
===================================================================
--- trunk/src/sh_getopt.c	(revision 160)
+++ trunk/src/sh_getopt.c	(revision 161)
@@ -521,5 +521,5 @@
   fprintf (stdout,
 	   _("This is samhain (%s), "\
-	     "(c) 1999-2006 Rainer Wichmann (http://la-samhna.de).\n"),
+	     "(c) 1999-2008 Rainer Wichmann (http://la-samhna.de).\n"),
 	   VERSION);
   fprintf (stdout, _("This software comes with ABSOLUTELY NO WARRANTY. "));
@@ -537,5 +537,5 @@
 {
   fprintf (stdout, 
-	   _("Copyright (C) 1999-2006 Rainer Wichmann"\
+	   _("Copyright (C) 1999-2008 Rainer Wichmann"\
 	     " (http://la-samhna.de).\n\n"));
 
Index: trunk/src/sh_tools.c
===================================================================
--- trunk/src/sh_tools.c	(revision 160)
+++ trunk/src/sh_tools.c	(revision 161)
@@ -588,5 +588,5 @@
 			  else
 			    sl_strlcpy(ecall, _("strlen"), SH_MINIBUF);
-			  sl_strlcpy(errmsg, _("Reverse lookup failed."), 
+			  sl_strlcpy(errmsg, _("Reverse lookup failed: "), 
 				     errsiz);
 			  sl_strlcat(errmsg, address, errsiz);
