From: Rich Felker Date: Tue, 13 Jan 2015 17:04:38 +0000 (-0500) Subject: increase syslog message limit from 256 to 1024 X-Git-Tag: v1.1.6~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3f65494a4cb2544eb16af3fa64a161bd8142f487;p=oweals%2Fmusl.git increase syslog message limit from 256 to 1024 this addresses alpine linux issue #3692 and brings the syslog message length limit in alignment with uclibc's implementation. --- diff --git a/src/misc/syslog.c b/src/misc/syslog.c index fbce4bcd..d5874991 100644 --- a/src/misc/syslog.c +++ b/src/misc/syslog.c @@ -81,7 +81,7 @@ static void _vsyslog(int priority, const char *message, va_list ap) char timebuf[16]; time_t now; struct tm tm; - char buf[256]; + char buf[1024]; int errno_save = errno; int pid; int l, l2;