Date: Sat, 15 Jun 2019 23:00:24 +0000 (UTC) From: Alan Somers <asomers@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r349087 - stable/11/sys/security/audit Message-ID: <201906152300.x5FN0Orf016047@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906152300.x5FN0Orf016047>