try and fix routing table errors
[spider.git] / perl / Thingy / Dx.pm
index 527d93539684cc59c9b14e38ab4fce93da2b7a8e..3621d2545c926d1aa53679ecbf104243d472cb35 100644 (file)
@@ -31,8 +31,8 @@ sub gen_Aranea
                $thing->{f} = $sd->[0];
                $thing->{c} = $sd->[1];
                $thing->{b} = $sd->[4] unless $thing->{user};
-               my $t = $sd->[2] / 60;
-               $thing->{t} = sprintf("%X", $t) unless $t eq $main::systime / 60;
+               my $t = int($sd->[2] / 60);
+               $thing->{t} = sprintf("%X", $t) unless $t eq int($main::systime / 60);
                $thing->{o} =  $sd->[7] unless $sd->[7] eq $main::mycall; 
                $thing->{i} = $sd->[3] if $sd->[3];
                $thing->{Aranea} = Aranea::genmsg($thing, [qw(f c b t o i)]);
@@ -45,7 +45,7 @@ sub from_Aranea
        my $thing = shift;
        return unless $thing;
        my $t = hex($thing->{t}) if exists $thing->{t};
-       $t ||= $thing->{time} / 60;     # if it is an aranea generated
+       $t ||= int($thing->{time} / 60);        # if it is an aranea generated
        my @spot = Spot::prepare(
                                                         $thing->{f},
                                                         $thing->{c},