From: minima Date: Fri, 6 Jul 2001 12:34:56 +0000 (+0000) Subject: add unset/privilege command to relinquish any sysop privileges you might X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=d856b7a8fa2eafb3b2901d4bef9565221e7cf6a2;p=spider.git add unset/privilege command to relinquish any sysop privileges you might have for the current session. --- diff --git a/Changes b/Changes index bc621000..7dbff597 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ 06Jul01======================================================================= 1. fix talk and routing problems to mycall +2. add unset/privilege command to relinquish any sysop privileges you might +have for the current session. 05Jul01======================================================================= 1. disconnect channels whose route node has disappeared 29Jun01======================================================================= diff --git a/cmd/unset/privilege.pl b/cmd/unset/privilege.pl new file mode 100644 index 00000000..d031a4ac --- /dev/null +++ b/cmd/unset/privilege.pl @@ -0,0 +1,11 @@ +# +# unset any privileges that the user might have for THIS SESSION only +# +# Copyright (c) 2001 Dirk Koopman G1TLH +# +# $Id$ +# +my ($self, $line) = @_; +$self->priv(0); +return (1, $self->msg('done')); +