X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fjournal%2Fjournald-stream.c;h=bc5b26d1185fa595838dd692256ed6202875ec24;hp=eabe019bfcc6f0f9214caa45933ab404cd4da24d;hb=b6e676ce41508e2aeea22202fc8f234126177f52;hpb=13790add4bf648fed816361794d8277a75253410 diff --git a/src/journal/journald-stream.c b/src/journal/journald-stream.c index eabe019bf..bc5b26d11 100644 --- a/src/journal/journald-stream.c +++ b/src/journal/journald-stream.c @@ -19,7 +19,6 @@ along with systemd; If not, see . ***/ -#include #include #include @@ -223,7 +222,7 @@ static int stdout_stream_log(StdoutStream *s, const char *p) { struct iovec iovec[N_IOVEC_META_FIELDS + 5]; int priority; char syslog_priority[] = "PRIORITY=\0"; - char syslog_facility[sizeof("SYSLOG_FACILITY=") + DECIMAL_STR_MAX(priority)]; + char syslog_facility[sizeof("SYSLOG_FACILITY=")-1 + DECIMAL_STR_MAX(int) + 1]; _cleanup_free_ char *message = NULL, *syslog_identifier = NULL; unsigned n = 0; char *label = NULL; @@ -258,7 +257,7 @@ static int stdout_stream_log(StdoutStream *s, const char *p) { IOVEC_SET_STRING(iovec[n++], syslog_priority); if (priority & LOG_FACMASK) { - snprintf(syslog_facility, sizeof(syslog_facility), "SYSLOG_FACILITY=%i", LOG_FAC(priority)); + xsprintf(syslog_facility, "SYSLOG_FACILITY=%i", LOG_FAC(priority)); IOVEC_SET_STRING(iovec[n++], syslog_facility); }