log: remove extra newline characters in log messages.

Signed-off-by: Michael Adam <obnox@samba.org>
(cherry picked from commit d652681e8a)
This commit is contained in:
Michael Adam 2013-11-09 13:26:43 +01:00
parent 8963739e4b
commit 54eaac8e76

View File

@ -258,10 +258,10 @@ int setup_logging (void)
config.syslog = TRUE;
log_message (LOG_CRIT, "ERROR: Could not create log "
"file %s: %s.\n",
"file %s: %s.",
config.logf_name, strerror (errno));
log_message (LOG_CRIT,
"Falling back to syslog logging\n");
"Falling back to syslog logging.");
}
}