version 1.79, 2007/01/03 01:59:42
|
version 1.80, 2007/04/03 17:51:45
|
Line 425 sub make_new_child {
|
Line 425 sub make_new_child {
|
} else { |
} else { |
$result=&courselog($path,$command); |
$result=&courselog($path,$command); |
} |
} |
|
$result = &escape($result); |
} else { |
} else { |
&logthis('Unable to do log query: '.$uname.'@'.$udom); |
&logthis('Unable to do log query: '.$uname.'@'.$udom); |
$result='no_such_file'; |
$result='no_such_file'; |
Line 1051 sub userlog {
|
Line 1052 sub userlog {
|
{ $include=0; } |
{ $include=0; } |
if (($filters{'end'}) && ($timestamp>$filters{'end'})) |
if (($filters{'end'}) && ($timestamp>$filters{'end'})) |
{ $include=0; } |
{ $include=0; } |
|
if (($filters{'action'} eq 'Role') && ($log !~/^Role/)) |
|
{ $include=0; } |
if (($filters{'action'} eq 'log') && ($log!~/^Log/)) { $include=0; } |
if (($filters{'action'} eq 'log') && ($log!~/^Log/)) { $include=0; } |
if (($filters{'action'} eq 'check') && ($log!~/^Check/)) |
if (($filters{'action'} eq 'check') && ($log!~/^Check/)) |
{ $include=0; } |
{ $include=0; } |
if ($include) { |
if ($include) { |
push(@results,$timestamp.':'.$log); |
push(@results,$timestamp.':'.$host.':'.&escape($log)); |
} |
} |
} |
} |
close IN; |
close IN; |