make just the time the default.
[spider.git] / perl / DXCron.pm
index 785a1ad93774260a048098ce002d8c687c77219d..2a9913f1f9682a4a20bb62b84850c7dbbacadf96 100644 (file)
@@ -28,7 +28,7 @@ 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;
+$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
 $main::build += $VERSION;
 $main::branch += $BRANCH;
 
@@ -174,7 +174,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 +224,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;
 }
@@ -286,13 +286,13 @@ sub rcmd
        return  unless $noderef && $noderef->version;
 
        # send it 
-       DXProt::addrcmd($DXProt::me, $call, $line);
+       DXProt::addrcmd($main::me, $call, $line);
 }
 
 sub run_cmd
 {
        my $line = shift;
-       my @in = DXCommandmode::run_cmd($DXProt::me, $line);
+       my @in = DXCommandmode::run_cmd($main::me, $line);
        dbg("cmd run: $line") if isdbg('cron');
        for (@in) {
                s/\s*$//og;