view dcclib/vsyslog.c @ 6:c7785b85f2d2 default tip

Init scripts try to conform LSB header
author Peter Gervai <grin@grin.hu>
date Tue, 10 Mar 2009 15:15:36 +0100
parents c7f6b056b673
children
line wrap: on
line source

/* compatibility hack for old systems that don't have vsyslog() */

#include "dcc_config.h"

#include <stdio.h>
#include <stdarg.h>
#include <syslog.h>

/* this is not thread safe */
void
dcc_vsyslog(int pri, const char *fmt, va_list args)
{
    char buf[512];

    vsnprintf(buf, sizeof(buf), fmt, args);
    syslog(pri, "%s", buf);
}