summaryrefslogtreecommitdiffstats
path: root/ulogd/extensions/ulogd_LOGEMU.c
diff options
context:
space:
mode:
authorlaforge <laforge>2003-09-28 15:19:25 +0000
committerlaforge <laforge>2003-09-28 15:19:25 +0000
commitda6345f7ce7090e24f2ba54a733245e138895878 (patch)
tree63f75e4f9dbd4fdbb518abdc8d9a25313658e081 /ulogd/extensions/ulogd_LOGEMU.c
parent9dfdf242dcaad16a5069ac95834eff8d60324058 (diff)
new configuration file syntax (Magnus Boden)
Diffstat (limited to 'ulogd/extensions/ulogd_LOGEMU.c')
-rw-r--r--ulogd/extensions/ulogd_LOGEMU.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/ulogd/extensions/ulogd_LOGEMU.c b/ulogd/extensions/ulogd_LOGEMU.c
index b789c7a..ad8a3e6 100644
--- a/ulogd/extensions/ulogd_LOGEMU.c
+++ b/ulogd/extensions/ulogd_LOGEMU.c
@@ -1,4 +1,4 @@
-/* ulogd_LOGEMU.c, Version $Revision: 1.13 $
+/* ulogd_LOGEMU.c, Version $Revision: 1.14 $
*
* ulogd output target for syslog logging emulation
*
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: ulogd_LOGEMU.c,v 1.13 2003/08/23 11:47:09 laforge Exp $
+ * $Id: ulogd_LOGEMU.c,v 1.14 2003/09/12 09:00:21 laforge Exp $
*
*/
@@ -52,11 +52,11 @@
((unsigned char *)&addr)[2], \
((unsigned char *)&addr)[3]
-static config_entry_t syslogf_ce = { NULL, "syslogfile", CONFIG_TYPE_STRING,
+static config_entry_t syslogf_ce = { NULL, "file", CONFIG_TYPE_STRING,
CONFIG_OPT_NONE, 0,
{ string: ULOGD_LOGEMU_DEFAULT } };
-static config_entry_t syslsync_ce = { &syslogf_ce, "syslogsync",
+static config_entry_t syslsync_ce = { &syslogf_ce, "sync",
CONFIG_TYPE_INT, CONFIG_OPT_NONE, 0,
{ value: ULOGD_LOGEMU_SYNC_DEFAULT }
};
@@ -305,8 +305,7 @@ static void _logemu_reg_op(void)
void _init(void)
{
/* FIXME: error handling */
- config_register_key(&syslsync_ce);
- config_parse_file(0);
+ config_parse_file("LOGEMU", &syslsync_ce);
if (gethostname(hostname, sizeof(hostname)) < 0) {
ulogd_log(ULOGD_FATAL, "can't gethostname(): %s\n",