]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
mksymbolsmanpage.pl: Fix showing symbol's last used version
authorJay Satiro <raysatiro@yahoo.com>
Sun, 22 Aug 2021 05:12:26 +0000 (01:12 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Sun, 22 Aug 2021 05:12:26 +0000 (01:12 -0400)
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
docs/libcurl/mksymbolsmanpage.pl

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