nospawnify the rest of the known commands
[spider.git] / cmd / show / rcmd.pl
index 64b64798ae0a6debafed70ad16e0b37784df88c4..d7cbd332a5529a9cd7099e6962f4afdb4a6eb9bf 100644 (file)
@@ -33,7 +33,6 @@ while ($f = shift @f) {                 # next field
 $to = 20 unless $to;
 $from = 0 unless $from;
 
-@out = $self->spawn_cmd("show/rcmd $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, 'rcmd', $who]);
+return (1, DXLog::print($from, $to, $main::systime, 'rcmd', $who)) if $self->{_nospawn};
+return (1, $self->spawn_cmd("show/rcmd $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, 'rcmd', $who]));
 
-#@out = DXLog::print($from, $to, $main::systime, 'rcmd', $who);
-return (1, @out);