Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/usr.sbin/makemandb Pull up the following revisions(s) (re...
details: https://anonhg.NetBSD.org/src/rev/933609b1284e
branches: netbsd-6
changeset: 773874:933609b1284e
user: sborrill <sborrill%NetBSD.org@localhost>
date: Mon Mar 05 19:16:27 2012 +0000
description:
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.
diffstat:
usr.sbin/makemandb/makemandb.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 7a0385965c2d -r 933609b1284e usr.sbin/makemandb/makemandb.c
--- a/usr.sbin/makemandb/makemandb.c Mon Mar 05 19:12:28 2012 +0000
+++ b/usr.sbin/makemandb/makemandb.c Mon Mar 05 19:16:27 2012 +0000
@@ -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@localhost>
* Copyright (c) 2011 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
@@ -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)
Home |
Main Index |
Thread Index |
Old Index