Mon Mar 5 19:16:27 2012 UTC ()
Pull up the following revisions(s) (requested by joerg in ticket #77):
	usr.sbin/makemandb/makemandb.c:	revision 1.7

Fix inverted condition when handling stale entries.


(sborrill)
diff -r1.2.2.2 -r1.2.2.3 src/usr.sbin/makemandb/makemandb.c

cvs diff -r1.2.2.2 -r1.2.2.3 src/usr.sbin/makemandb/makemandb.c (expand / switch to context diff)
--- src/usr.sbin/makemandb/makemandb.c 2012/03/02 17:02:00 1.2.2.2
+++ src/usr.sbin/makemandb/makemandb.c 2012/03/05 19:16:27 1.2.2.3
@@ -1,4 +1,4 @@
-/*	$NetBSD: makemandb.c,v 1.2.2.2 2012/03/02 17:02:00 riz Exp $	*/
+/*	$NetBSD: makemandb.c,v 1.2.2.3 2012/03/05 19:16:27 sborrill Exp $	*/
 /*
  * Copyright (c) 2011 Abhinav Upadhyay <er.abhinav.upadhyay@gmail.com>
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -17,7 +17,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: makemandb.c,v 1.2.2.2 2012/03/02 17:02:00 riz Exp $");
+__RCSID("$NetBSD: makemandb.c,v 1.2.2.3 2012/03/05 19:16:27 sborrill Exp $");
 
 #include <sys/stat.h>
 #include <sys/types.h>
@@ -772,7 +772,7 @@
 			total_count, new_count, link_count, err_count);
 	}
 
-	if (mflags.recreate == 0)
+	if (mflags.recreate)
 		return;
 
 	if (mflags.verbosity)