set ^Z and ^V correctly
[spider.git] / perl / DXCluster.pm
index 021ff7f270875b3e0ea2cbab2e11609bc8c2e43e..aee8fe4d94a0c6a0e1c192fb1d94d836b705edd1 100644 (file)
@@ -136,12 +136,6 @@ sub cluster
        return " $DXNode::nodes nodes, $users local / $tot total users  Max users $DXNode::maxusers  Uptime $uptime";
 }
 
-sub DESTROY
-{
-       my $self = shift;
-       dbg('cluster', "destroying $self->{call}\n");
-}
-
 no strict;
 sub AUTOLOAD
 {
@@ -303,5 +297,13 @@ sub dolist
 {
 
 }
+
+sub DESTROY
+{
+       my $self = shift;
+       undef $self->{list} if $self->{list};
+}
+
+
 1;
 __END__