X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCron.pm;h=1d3dcc6d00b5d3bc1a5aa271f6977f8da7ed1a7d;hb=b9dffeff7239952814342dad19db3a51def6fab7;hp=74b65996a3e54eb4d0b2cc01ab8488a9504a7ba2;hpb=50f6466ca2dff82ca470a4abe327d741cffef61a;p=spider.git diff --git a/perl/DXCron.pm b/perl/DXCron.pm index 74b65996..1d3dcc6d 100644 --- a/perl/DXCron.pm +++ b/perl/DXCron.pm @@ -26,12 +26,6 @@ $lastmin = 0; my $fn = "$main::cmd/crontab"; my $localfn = "$main::localcmd/crontab"; -use vars qw($VERSION $BRANCH); -$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; -$main::build += $VERSION; -$main::branch += $BRANCH; - # cron initialisation / reading in cronjobs sub init { @@ -174,7 +168,7 @@ sub process sub connected { my $call = uc shift; - return DXChannel->get($call); + return DXChannel::get($call); } # is it remotely connected anywhere (with exact callsign)? @@ -224,7 +218,7 @@ sub presentish_on sub last_connect { my $call = uc shift; - return $main::systime if DXChannel->get($call); + return $main::systime if DXChannel::get($call); my $user = DXUser->get($call); return $user ? $user->lastin : 0; }