fix badspotters and local ann/full.
[spider.git] / cmd / unset / newprotocol.pl
diff --git a/cmd/unset/newprotocol.pl b/cmd/unset/newprotocol.pl
deleted file mode 100644 (file)
index e14c2df..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# unset the new protocol flag
-#
-# Copyright (c) 1998 - Dirk Koopman
-#
-# $Id$
-#
-
-my ($self, $line) = @_;
-my @args = split /\s+/, $line;
-my $call;
-my @out;
-
-@args = $self->call if (!@args || $self->priv < 9);
-
-foreach $call (@args) {
-       $call = uc $call;
-       my $user = DXUser->get_current($call);
-       if ($user) {
-               $user->wantnp(0);
-               $user->put;
-               push @out, $self->msg('unset', 'New Protocol', $call);
-       } else {
-               push @out, $self->msg('e3', "Unset New Protocol", $call);
-       }
-}
-return (1, @out);