svn commit: r337323 - head/usr.sbin/newsyslog
Mark Johnston
markj at FreeBSD.org
Sat Aug 4 15:30:57 UTC 2018
Author: markj
Date: Sat Aug 4 15:30:56 2018
New Revision: 337323
URL: https://svnweb.freebsd.org/changeset/base/337323
Log:
Fix a flag collision introduced in r327451.
PR: 230350
MFC after: 3 days
Modified:
head/usr.sbin/newsyslog/newsyslog.c
Modified: head/usr.sbin/newsyslog/newsyslog.c
==============================================================================
--- head/usr.sbin/newsyslog/newsyslog.c Sat Aug 4 14:57:23 2018 (r337322)
+++ head/usr.sbin/newsyslog/newsyslog.c Sat Aug 4 15:30:56 2018 (r337323)
@@ -133,8 +133,7 @@ __FBSDID("$FreeBSD$");
#define CE_NODUMP 0x0200 /* Set 'nodump' on newly created log file. */
#define CE_PID2CMD 0x0400 /* Replace PID file with a shell command.*/
#define CE_PLAIN0 0x0800 /* Do not compress zero'th history file */
-
-#define CE_RFC5424 0x0800 /* Use RFC5424 format rotation message */
+#define CE_RFC5424 0x1000 /* Use RFC5424 format rotation message */
#define MIN_PID 5 /* Don't touch pids lower than this */
#define MAX_PID 99999 /* was lower, see /usr/include/sys/proc.h */
More information about the svn-src-all
mailing list