Minor, fix missing \n in calls to logit()
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
parent
477bb40c44
commit
62dea3aecf
@ -586,7 +586,7 @@ no_klogd:
|
|||||||
* Tell system we're up and running by creating /run/syslogd.pid
|
* Tell system we're up and running by creating /run/syslogd.pid
|
||||||
*/
|
*/
|
||||||
if (pidfile(PidFile))
|
if (pidfile(PidFile))
|
||||||
logit("Failed creating %s: %s", PidFile, strerror(errno));
|
logit("Failed creating %s: %s\n", PidFile, strerror(errno));
|
||||||
|
|
||||||
/* Tell parent we're up and running */
|
/* Tell parent we're up and running */
|
||||||
if (ppid != 1)
|
if (ppid != 1)
|
||||||
@ -2603,7 +2603,7 @@ static void init(void)
|
|||||||
|
|
||||||
fp = cftemp();
|
fp = cftemp();
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
logit("Cannot even create a tempfile: %s", strerror(errno));
|
logit("Cannot even create a tempfile: %s\n", strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3124,7 +3124,7 @@ static int cfparse(FILE *fp, struct files *newf, struct notifiers *newn)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
logit("Parsing %s ...", gl.gl_pathv[i]);
|
logit("Parsing %s ...\n", gl.gl_pathv[i]);
|
||||||
cfparse(fpi, newf, newn);
|
cfparse(fpi, newf, newn);
|
||||||
fclose(fpi);
|
fclose(fpi);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user