mksymbolsmanpage.pl: Fix showing symbol's last used version

Prior to this change the symbol's deprecated version was erroneously
shown as its last used version.

Bug: https://github.com/curl/curl/commit/4e53b94#commitcomment-55239509
Reported-by: i-ky@users.noreply.github.com
This commit is contained in:
Jay Satiro 2021-08-22 01:12:26 -04:00
parent 342f92763e
commit 9cb395dcc9

View File

@ -86,7 +86,7 @@ while(<STDIN>) {
print "Deprecated since $dep\n"; print "Deprecated since $dep\n";
} }
if($rem) { if($rem) {
print "Last used in $dep\n"; print "Last used in $rem\n";
} }
} }