remove the mod commnd from the pc9x check and revert
[spider.git] / perl / DXProtHandle.pm
index b6f4473d5c7bf2f1e75da328621a7a021a173fb0..e0f327e71de05c3f8778215b4373832aa21c90fa 100644 (file)
@@ -1517,7 +1517,7 @@ sub check_pc9x_t
                                        # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
                                        # 86378 respectively in the calculation below).
                                        #
-                                       if (($t-$lastid)%86400 > $pc9x_past_age) {
+                                       if ($t+86400-$lastid > $pc9x_past_age) {
                                                dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
                                                return undef;
                                        }
@@ -1530,6 +1530,7 @@ sub check_pc9x_t
        } elsif ($create) {
                $parent = Route::Node->new($call);
        } else {
+               dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
                return undef;
        }
        if (isdbg('pc92dedupe')) {