svn commit: r335060 - head/sys/security/audit

Alan Somers asomers at FreeBSD.org
Wed Jun 13 14:55:32 UTC 2018


Author: asomers
Date: Wed Jun 13 14:55:31 2018
New Revision: 335060
URL: https://svnweb.freebsd.org/changeset/base/335060

Log:
  audit(4): fix the definition of ARG_TERMID_ADDR
  
  Due to a copy/paste error in r168688, ARG_TERMID_ADDR has the same
  definition as ARG_SADDRUNIX.  Fix it.
  
  The header change, while publicly visible, is guarded by #ifdef KERNEL, and
  I can't find any kmod ports that use it.  So I'm not bumping
  __FreeBSD_version.
  
  PR:		228820
  Submitted by:	aniketp
  Sponsored by:	Google, Inc. (GSoC 2018)
  Differential Revision:	https://reviews.freebsd.org/D15702

Modified:
  head/sys/security/audit/audit_private.h

Modified: head/sys/security/audit/audit_private.h
==============================================================================
--- head/sys/security/audit/audit_private.h	Wed Jun 13 13:41:23 2018	(r335059)
+++ head/sys/security/audit/audit_private.h	Wed Jun 13 14:55:31 2018	(r335060)
@@ -275,7 +275,7 @@ struct audit_record {
 #define	ARG_SADDRINET		0x0000000000100000ULL
 #define	ARG_SADDRINET6		0x0000000000200000ULL
 #define	ARG_SADDRUNIX		0x0000000000400000ULL
-#define	ARG_TERMID_ADDR		0x0000000000400000ULL
+#define	ARG_TERMID_ADDR		0x0000000000800000ULL
 #define	ARG_UNUSED2		0x0000000001000000ULL
 #define	ARG_UPATH1		0x0000000002000000ULL
 #define	ARG_UPATH2		0x0000000004000000ULL


More information about the svn-src-head mailing list