Displaying 1 result from an estimated 1 matches for "1222ff".
2012 Jun 11
9
[Bug 793] New: ulogd -d does not close all fds
...lling the ulogd init script from another program (e.g. chef), any fds
being held open by the parent (other than stdin/out/err) are held open by
ulogd. In our environment, with flock being used to execute chef, ulogd holds
open the flock file /var/lock/chef-client.
The fix would be to ulogd.c, line 1222ff, something like:
// close any open file descriptors
for (i=getdtablesize();i>=0;--i)
close(i);
or, if POSIX compliance is desired, use sysconf(_SC_OPEN_MAX).
--
Configure bugmail: http://bugzilla.netfilter.org/userprefs.cgi?tab=email
------- You are receiving this mail bec...