mirror of
https://github.com/webmin/webmin.git
synced 2026-02-10 09:12:05 +00:00
15 lines
208 B
Perl
15 lines
208 B
Perl
|
|
do 'proc-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
if ($cgi eq 'edit_proc.cgi') {
|
|
return '1'; # First process
|
|
}
|
|
elsif ($cgi eq 'open_files.cgi' || $cgi eq 'trace.cgi') {
|
|
return 'pid=1';
|
|
}
|
|
return undef;
|
|
}
|