source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: When makewhatis(8) finds an .so link after the manual being
@ 2014-09-01 23:47 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2014-09-01 23:47 UTC (permalink / raw)
  To: source

Log Message:
-----------
When makewhatis(8) finds an .so link after the manual being pointed to
has already been processed, add the file names to the names table, too,
not just to the mlinks table.                      
This fixes a bug where apropos(1) and the new man(1) wouldn't find some 
of the Xenocara manuals via some of their .so links.  After rebuilding, 
run "makewhatis /usr/X11R6/man" or just wait for weekly(8).

Modified Files:
--------------
    mdocml:
        mandocdb.c

Revision Data
-------------
Index: mandocdb.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mandocdb.c,v
retrieving revision 1.159
retrieving revision 1.160
diff -Lmandocdb.c -Lmandocdb.c -u -p -r1.159 -r1.160
--- mandocdb.c
+++ mandocdb.c
@@ -1984,6 +1984,13 @@ dbadd_mlink(const struct mlink *mlink)
 	SQL_BIND_INT64(stmts[STMT_INSERT_LINK], i, mlink->mpage->pageid);
 	SQL_STEP(stmts[STMT_INSERT_LINK]);
 	sqlite3_reset(stmts[STMT_INSERT_LINK]);
+
+	i = 1;
+	SQL_BIND_INT64(stmts[STMT_INSERT_NAME], i, NAME_FILE);
+	SQL_BIND_TEXT(stmts[STMT_INSERT_NAME], i, mlink->name);
+	SQL_BIND_INT64(stmts[STMT_INSERT_NAME], i, mlink->mpage->pageid);
+	SQL_STEP(stmts[STMT_INSERT_NAME]);
+	sqlite3_reset(stmts[STMT_INSERT_NAME]);
 }
 
 /*
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-09-01 23:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-01 23:47 mdocml: When makewhatis(8) finds an .so link after the manual being schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).