|
with version 0.18, when i call 'closelog', i see the following error msg:
"close_xs is not a valid Sys::Syslog macro"
poking around Sys/Syslog.pm ... i think i see the problem, namely that 'close_xs' isn't defined
[...]
sub disconnect_log {
$connected = 0;
$syslog_send = undef;
if($current_proto eq 'native') {
eval { close_xs() };
return 1;
}
return close SYSLOG;
}
--sk
stuart kendrick
fhcrc
skendric@fhcrc.org
|