From 472358268a3a5ae7eff4dbde1e48f925e8c7d82b Mon Sep 17 00:00:00 2001
From: Ingo Schwarze <schwarze@openbsd.org>
Date: Sun, 4 Dec 2011 14:23:29 +0000
Subject: [PATCH] Fix parsing of file names given on the command line; i broke
 it when adding support for formatted manual pages.

---
 mandocdb.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/mandocdb.c b/mandocdb.c
index ca5ff130..cc99bf35 100644
--- a/mandocdb.c
+++ b/mandocdb.c
@@ -1,4 +1,4 @@
-/*	$Id: mandocdb.c,v 1.23 2011/12/03 18:47:09 kristaps Exp $ */
+/*	$Id: mandocdb.c,v 1.24 2011/12/04 14:23:29 schwarze Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -1417,13 +1417,12 @@ ofile_argbuild(int argc, char *argv[], struct of **of)
 				*p = '\0';
 				continue;
 			}
-			if (strncmp("man", p + 1, 3)) {
+			if (0 == strncmp("man", p + 1, 3))
 				src_form |= MANDOC_SRC;
-				arch = p + 1;
-			} else if (strncmp("cat", p + 1, 3)) {
+			else if (0 == strncmp("cat", p + 1, 3))
 				src_form |= MANDOC_FORM;
+			else
 				arch = p + 1;
-			}
 			break;
 		}
 		if (NULL == title)
-- 
2.47.1