On 11/9/11 8:21 AM, Ryan Stone wrote:
On Wed, Nov 9, 2011 at 11:01 AM, Brooks Davis wrote:
Do you happen to know why the code calloc's the struct filed's with 1's?
I didn't do any investigation but that's seems like an odd pattern.
calloc(1, sizeof(*f)) returns an array of 1 element of size si
On Wed, Nov 09, 2011 at 10:27:44AM -0500, Ryan Stone wrote:
> I've written the following patch to allow syslogd to accept multiple
> configuration files by passing multiple -f options. One use case for
> this is to specify a common configuration file that applies across
> multiple machines along w
On Wed, Nov 9, 2011 at 11:01 AM, Brooks Davis wrote:
> Do you happen to know why the code calloc's the struct filed's with 1's?
> I didn't do any investigation but that's seems like an odd pattern.
calloc(1, sizeof(*f)) returns an array of 1 element of size sizeof(*f)
that is pre-zeroed. It's th
I've written the following patch to allow syslogd to accept multiple
configuration files by passing multiple -f options. One use case for
this is to specify a common configuration file that applies across
multiple machines along with a second config file specific to the
local machine.
The patch c