]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fix parsing of file names given on the command line; i broke it
authorIngo Schwarze <schwarze@openbsd.org>
Sun, 4 Dec 2011 14:23:29 +0000 (14:23 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Sun, 4 Dec 2011 14:23:29 +0000 (14:23 +0000)
when adding support for formatted manual pages.

mandocdb.c

index ca5ff1300e137615e10d74ccdba4818c7325cf7f..cc99bf3553306d47fd4989a45d330468b942fae7 100644 (file)
@@ -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)