From: Bodo Möller Date: Sun, 8 Jan 2006 19:54:32 +0000 (+0000) Subject: include max. codes in debug output X-Git-Tag: OpenSSL_0_9_8k^2~1599 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a07b4dc038f9409b34a22be9d39a29df87f9d7d0;p=oweals%2Fopenssl.git include max. codes in debug output --- diff --git a/util/mkerr.pl b/util/mkerr.pl index 030899b7ab..4cb48f9964 100644 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -195,6 +195,16 @@ while (($hdr, $lib) = each %libinc) } } } + + if ($debug) { + if (defined($rmax{$lib})) { + print STDERR "Max reason code rmax" . "{" . "$lib" . "} = $rmax{$lib}\n"; + } + if (defined($fmax{$lib})) { + print STDERR "Max function code fmax" . "{" . "$lib" . "} = $fmax{$lib}\n"; + } + } + close IN; } @@ -237,7 +247,7 @@ foreach $file (@source) { } close IN; } -print STDERR "\n" if $debug; +print STDERR " \n" if $debug; # Now process each library in turn.