mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
makewhatis: avoid skipping another page after one with no mlinks
Submitted by: Ingo Schwarze MFC after: 3 weeks MFC with: r307003
This commit is contained in:
parent
add6f7d069
commit
4c5fff6d49
1 changed files with 1 additions and 3 deletions
|
|
@ -1146,10 +1146,8 @@ mpages_merge(struct mparse *mp)
|
|||
|
||||
for (mpage = mpage_head; mpage != NULL; mpage = mpage->next) {
|
||||
mlinks_undupe(mpage);
|
||||
if ((mlink = mpage->mlinks) == NULL) {
|
||||
mpage = mpage->next;
|
||||
if ((mlink = mpage->mlinks) == NULL)
|
||||
continue;
|
||||
}
|
||||
|
||||
name_mask = NAME_MASK;
|
||||
mandoc_ohash_init(&names, 4, offsetof(struct str, key));
|
||||
|
|
|
|||
Loading…
Reference in a new issue