Change DXUser->get* to DXUser::get*
[spider.git] / cmd / uncatchup.pl
index 8a6d736a3696720b5843dc5ce8fec8cbae1c621a..8a6f02a680eda9bfa1aa3d488528e1e3c001ccd8 100644 (file)
@@ -16,7 +16,7 @@ my @f = split /\s+/, $line;
 return (1, "usage: catchup <node call> all|[<msgno ...]") unless @f >= 2;
 
 my $call = uc shift @f;
-my $user = DXUser->get_current($call);
+my $user = DXUser::get_current($call);
 return (1, "$call not a node") unless $user && $user->sort ne 'U';
 
 my @out;