util/find-doc-nits: Better checking of missing documentation
authorRichard Levitte <levitte@openssl.org>
Thu, 12 Dec 2019 18:50:41 +0000 (19:50 +0100)
committerRichard Levitte <levitte@openssl.org>
Sat, 21 Dec 2019 21:53:54 +0000 (22:53 +0100)
commitb4350db5a7ac501e652b75bef21ed3f82d2f6d1b
treed51b7830549238317a35041fdc919b8098718a93
parent5423cabb50edf1ad4c5bba1cbaab8d5fd0826fb7
util/find-doc-nits: Better checking of missing documentation

The names collected in util/missing*.txt are not file names, but
symbol names, and to compare properly with script data, the section
name must be included.

All symbols found in util/lib*.num are library functions, so we know
that they are in manual section 3 and can simply add that info.  The
same goes for all macros found in C headers.

Finally, we get rid of getdocced() and its associated hash table
%docced.  We already have the appropriate information in %name_map.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10621)
util/find-doc-nits