diff options
-rw-r--r-- | Echolot/Stats.pm | 12 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | pingd | 4 |
3 files changed, 11 insertions, 8 deletions
diff --git a/Echolot/Stats.pm b/Echolot/Stats.pm index 2a4f45b..96ef8a4 100644 --- a/Echolot/Stats.pm +++ b/Echolot/Stats.pm @@ -1,7 +1,7 @@ package Echolot::Stats; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Stats.pm,v 1.14 2002/07/10 17:58:05 weasel Exp $ +# $Id: Stats.pm,v 1.15 2002/07/10 23:20:40 weasel Exp $ # =pod @@ -474,7 +474,7 @@ sub build_lists() { build_list2( $pubrems, Echolot::Config::get()->{'resultdir'}.'/'.'mlist2', Echolot::Config::get()->{'templates'}->{'mlist2'}); if (Echolot::Config::get()->{'combined_list'}) { $clist->{'mix'} = $rems; - $pubclist->{'mix'} = $pubrems; + $pubclist->{'mix'} = $pubrems; $pubrems = undef; }; $rems = build_rems(['cpunk-rsa', 'cpunk-dsa', 'cpunk-clear']); @@ -485,7 +485,7 @@ sub build_lists() { build_list2( $pubrems, Echolot::Config::get()->{'resultdir'}.'/'.'rlist2', Echolot::Config::get()->{'templates'}->{'rlist2'}); if (Echolot::Config::get()->{'combined_list'} && ! Echolot::Config::get()->{'seperate_rlists'}) { $clist->{'cpunk'} = $rems; - $pubclist->{'cpunk'} = $pubrems; + $pubclist->{'cpunk'} = $pubrems; $pubrems = undef; }; if (Echolot::Config::get()->{'seperate_rlists'}) { @@ -497,7 +497,7 @@ sub build_lists() { build_list2( $pubrems, Echolot::Config::get()->{'resultdir'}.'/'.'rlist2-rsa', Echolot::Config::get()->{'templates'}->{'rlist2-rsa'}); if (Echolot::Config::get()->{'combined_list'}) { $clist->{'cpunk-rsa'} = $rems; - $pubclist->{'cpunk-rsa'} = $pubrems; + $pubclist->{'cpunk-rsa'} = $pubrems; $pubrems = undef; }; $rems = build_rems(['cpunk-dsa']); @@ -508,7 +508,7 @@ sub build_lists() { build_list2( $pubrems, Echolot::Config::get()->{'resultdir'}.'/'.'rlist2-dsa', Echolot::Config::get()->{'templates'}->{'rlist2-dsa'}); if (Echolot::Config::get()->{'combined_list'}) { $clist->{'cpunk-dsa'} = $rems; - $pubclist->{'cpunk-dsa'} = $pubrems; + $pubclist->{'cpunk-dsa'} = $pubrems; $pubrems = undef; }; $rems = build_rems(['cpunk-clear']); @@ -519,7 +519,7 @@ sub build_lists() { build_list2( $pubrems, Echolot::Config::get()->{'resultdir'}.'/'.'rlist2-clear', Echolot::Config::get()->{'templates'}->{'rlist2-clear'}); if (Echolot::Config::get()->{'combined_list'}) { $clist->{'cpunk-clear'} = $rems; - $pubclist->{'cpunk-clear'} = $pubrems; + $pubclist->{'cpunk-clear'} = $pubrems; $pubrems = undef; }; }; if (Echolot::Config::get()->{'combined_list'}) { @@ -1,3 +1,6 @@ +Changes in version 2.0beta8 - 2002-07-10 + * Fix public clist. + Changes in version 2.0beta7 - 2002-07-10 * fixed a stupid syntax bug. @@ -3,7 +3,7 @@ $| = 1; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: pingd,v 1.31 2002/07/10 22:17:07 weasel Exp $ +# $Id: pingd,v 1.32 2002/07/10 23:20:40 weasel Exp $ # =pod @@ -232,7 +232,7 @@ $ENV{'PATH'} = '/bin:/usr/bin'; delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'}; -my $VERSION = '2.0beta7'; +my $VERSION = '2.0beta8'; my $redirected_stdio = 0; |