From eb0d4661e34ac6f59a8ebdfb146b7088d06d9102 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 3 Jan 2008 16:11:40 +0000 Subject: fixed old references to rklogd - thanks to Michael Biebl for spotting them. --- plugins/imklog/imklog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/imklog/imklog.c') diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c index 72960e1c..11bc8d41 100644 --- a/plugins/imklog/imklog.c +++ b/plugins/imklog/imklog.c @@ -285,7 +285,7 @@ static enum LOGSRC GetKernelLogSrc(void) if ( (kmsg = open(_PATH_KLOG, O_RDONLY)) < 0 ) { char sz[512]; - snprintf(sz, sizeof(sz), "rklogd: Cannot open proc file system, %d - %s.\n", errno, strerror(errno)); + snprintf(sz, sizeof(sz), "imklog: Cannot open proc file system, %d - %s.\n", errno, strerror(errno)); logmsgInternal(LOG_SYSLOG|LOG_ERR, sz, ADDDATE); ksyslog(7, NULL, 0); /* TODO: check this, implement more */ return(none); @@ -568,7 +568,7 @@ static void LogKernelLine(void) char sz[512]; if(errno == EINTR) return; - snprintf(sz, sizeof(sz), "rklogd: Error return from sys_sycall: %d - %s\n", errno, strerror(errno)); + snprintf(sz, sizeof(sz), "imklog: Error return from sys_sycall: %d - %s\n", errno, strerror(errno)); logmsgInternal(LOG_SYSLOG|LOG_ERR, sz, ADDDATE); } else -- cgit