Change DXUser->get* to DXUser::get*
[spider.git] / cmd / catchup.pl
index 20020067b8d90a87e4750c24cc0c0ae7e70d4231..2bf0d5e7bee9dae0c361be32e3f639eeb00c4df2 100644 (file)
@@ -4,7 +4,7 @@
 # in other words mark all messages as being already received
 # by this node.
 #
-# $Id$
+#
 #
 # Copyright (c) 1999 Dirk Koopman G1TLH
 #
@@ -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;