summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-10 23:20:40 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-10 23:20:40 +0000
commit4d2d1ce20b09671c1c23b8364c1e218ae89af83a (patch)
tree1b6045364997de23749b1326d4146b60219a7b97
parentb7d7d9e36cae02706c20d9f57a587bf1de9d635f (diff)
Fix public clistecholot-2.0beta8
-rw-r--r--Echolot/Stats.pm12
-rw-r--r--NEWS3
-rwxr-xr-xpingd4
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'}) {
diff --git a/NEWS b/NEWS
index 1907cab..8268e32 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/pingd b/pingd
index d4cd597..44e069b 100755
--- a/pingd
+++ b/pingd
@@ -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;