projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add -d flag to list -u details (now normally off)
[openssl.git]
/
util
/
find-doc-nits
diff --git
a/util/find-doc-nits
b/util/find-doc-nits
index 0b8308086433e403c2aae5785d4f7ae59003c084..2623d6c958ea753d2af320e3bd852e511eddff81 100755
(executable)
--- a/
util/find-doc-nits
+++ b/
util/find-doc-nits
@@
-19,17
+19,19
@@
use lib catdir(dirname($0), "perl");
use OpenSSL::Util::Pod;
# Options.
use OpenSSL::Util::Pod;
# Options.
-our($opt_s);
-our($opt_u);
+our($opt_d);
our($opt_h);
our($opt_h);
-our($opt_n);
our($opt_l);
our($opt_l);
+our($opt_n);
our($opt_p);
our($opt_p);
+our($opt_s);
+our($opt_u);
sub help()
{
print <<EOF;
Find small errors (nits) in documentation. Options:
sub help()
{
print <<EOF;
Find small errors (nits) in documentation. Options:
+ -d Detailed list of undocumented (implies -u)
-l Print bogus links
-n Print nits in POD pages
-s Also print missing sections in POD pages (implies -n)
-l Print bogus links
-n Print nits in POD pages
-s Also print missing sections in POD pages (implies -n)
@@
-282,7
+284,7
@@
sub checkmacros()
|| $macro =~ /DEPRECATEDIN/
|| $macro =~ /IMPLEMENT_/
|| $macro =~ /DECLARE_/;
|| $macro =~ /DEPRECATEDIN/
|| $macro =~ /IMPLEMENT_/
|| $macro =~ /DECLARE_/;
- print "$f:$macro\n";
+ print "$f:$macro\n"
if $opt_d
;
$count++;
}
close(IN);
$count++;
}
close(IN);
@@
-302,7
+304,7
@@
sub printem()
# Skip ASN1 utilities
next if $func =~ /^ASN1_/;
# Skip ASN1 utilities
next if $func =~ /^ASN1_/;
- print "$libname:$func\n";
+ print "$libname:$func\n"
if $opt_d
;
$count++;
}
print "# Found $count missing from $numfile\n\n";
$count++;
}
print "# Found $count missing from $numfile\n\n";
@@
-395,14
+397,15
@@
sub publicize() {
}
}
}
}
-getopts('lnsphu');
+getopts('
d
lnsphu');
&help() if $opt_h;
&help() if $opt_h;
+$opt_n = 1 if $opt_s or $opt_p;
+$opt_u = 1 if $opt_d;
-die "Need one of -
l -n -s -p or -u
flags.\n"
- unless $opt_l or $opt_n or $opt_
s or $opt_p or $opt_
u;
+die "Need one of -
[dlnspu]
flags.\n"
+ unless $opt_l or $opt_n or $opt_u;
-$opt_n = 1 if $opt_s or $opt_p;
if ( $opt_n ) {
&publicize() if $opt_p;
if ( $opt_n ) {
&publicize() if $opt_p;