From cc12fc66d1f958c3c04d6f106b4e9128f6bce925 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 3 Dec 1997 03:21:25 +0000 Subject: I'm slowly getting though the todo list :-) This change allows people to select the SYSLOG_FACILITY in local.h, or add it to the Makefile if they want to. (This used to be commit afe88facbfb85113105bf516e066b6c1e971f6b7) --- source3/include/local.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/include/local.h') diff --git a/source3/include/local.h b/source3/include/local.h index 2e7fa223540..9a31032ee68 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -25,6 +25,11 @@ */ #define PRINTCAP_NAME "/etc/printcap" +/* define what facility to use for syslog */ +#ifndef SYSLOG_FACILITY +#define SYSLOG_FACILITY LOG_DAEMON +#endif + /* set these to define the limits of the server. NOTE These are on a per-client basis. Thus any one machine can't connect to more than MAX_CONNECTIONS services, but any number of machines may connect at -- cgit