From d856b7a8fa2eafb3b2901d4bef9565221e7cf6a2 Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 6 Jul 2001 12:34:56 +0000 Subject: [PATCH] add unset/privilege command to relinquish any sysop privileges you might have for the current session. --- Changes | 2 ++ cmd/unset/privilege.pl | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 cmd/unset/privilege.pl 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')); + -- 2.34.1