svn commit: r349087 - stable/11/sys/security/audit
Alan Somers
asomers at FreeBSD.org
Sat Jun 15 23:00:25 UTC 2019
Author: asomers
Date: Sat Jun 15 23:00:23 2019
New Revision: 349087
URL: https://svnweb.freebsd.org/changeset/base/349087
Log:
MFC r335060
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:
stable/11/sys/security/audit/audit_private.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/security/audit/audit_private.h
==============================================================================
--- stable/11/sys/security/audit/audit_private.h Sat Jun 15 22:25:39 2019 (r349086)
+++ stable/11/sys/security/audit/audit_private.h Sat Jun 15 23:00:23 2019 (r349087)
@@ -263,7 +263,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-stable-11
mailing list