X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Ftalk.pl;h=93b0ab9a8a70275e5b462793bb8ad130a34eb963;hb=28c96d575e54373562fec59176eccf2f64935e6b;hp=f30d95ec57e9676e29f87cfdb772d242b70fe82e;hpb=7101f92654a7a2bffbe5d3fb80de89710ee3951e;p=spider.git diff --git a/cmd/show/talk.pl b/cmd/show/talk.pl index f30d95ec..93b0ab9a 100644 --- a/cmd/show/talk.pl +++ b/cmd/show/talk.pl @@ -7,8 +7,6 @@ # my $self = shift; -return (1, $self->msg('e5')) if $self->priv < 9; - my $cmdline = shift; my @f = split /\s+/, $cmdline; my $f; @@ -32,6 +30,10 @@ while ($f = shift @f) { # next field $to = 20 unless $to; $from = 0 unless $from; +if ($self->priv < 6) { + $who = $self->call unless $who; + return (1, $self->msg('e5')) if $who ne $self->call; +} @out = DXLog::print($from, $to, $main::systime, '^talk', $who); return (1, @out);