X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FBBS.pm;h=741fb116a15da803d27a9f24730f7ba3f4a72bec;hb=8bc319a24ff1235ff7072d6e5f7a4e99590a1b29;hp=e2920a476f23d3fa21bde78e71f23b6bc202162e;hpb=6b19958cbe351af8d5462f4e0e03b87875eec16a;p=spider.git diff --git a/perl/BBS.pm b/perl/BBS.pm index e2920a47..741fb116 100644 --- a/perl/BBS.pm +++ b/perl/BBS.pm @@ -15,7 +15,7 @@ use strict; use DXUser; use DXChannel; use DB_File; -use Carp; +use DXDebug; @ISA = qw(DXChannel); @@ -39,7 +39,6 @@ sub init sub new { my $self = DXChannel::alloc(@_); - $self->{'sort'} = 'B'; return $self; } @@ -124,11 +123,12 @@ sub normal # # end a connection (called by disconnect) # -sub finish +sub disconnect { my $self = shift; my $call = $self->call; Log('BBS', "$call", "disconnected"); + $self->SUPER::disconnect; } #