svn commit: r337417 - stable/11/usr.sbin/newsyslog

Mark Johnston markj at FreeBSD.org
Tue Aug 7 14:09:30 UTC 2018


Author: markj
Date: Tue Aug  7 14:09:29 2018
New Revision: 337417
URL: https://svnweb.freebsd.org/changeset/base/337417

Log:
  MFC r337323:
  Fix a flag collision introduced in r327451.
  
  PR:	230350

Modified:
  stable/11/usr.sbin/newsyslog/newsyslog.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/newsyslog/newsyslog.c
==============================================================================
--- stable/11/usr.sbin/newsyslog/newsyslog.c	Tue Aug  7 14:02:41 2018	(r337416)
+++ stable/11/usr.sbin/newsyslog/newsyslog.c	Tue Aug  7 14:09:29 2018	(r337417)
@@ -128,8 +128,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-stable-11 mailing list