summaryrefslogtreecommitdiffstats
path: root/sys/security
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-10-31 15:11:01 +0000
committerrwatson <rwatson@FreeBSD.org>2008-10-31 15:11:01 +0000
commitefc5b661a18dbeb6d04e9916452fb1bd3a748c45 (patch)
tree7d82acff8db5aba70e495ff616a353936c9b3bee /sys/security
parent06bee05bb5fd49d3c0cbd402386c2328bd14d700 (diff)
downloadFreeBSD-src-efc5b661a18dbeb6d04e9916452fb1bd3a748c45.zip
FreeBSD-src-efc5b661a18dbeb6d04e9916452fb1bd3a748c45.tar.gz
Since there is no longer the opportunity for record truncation, just
return 0 if the truncation counter is queried on an audit pipe. MFC after: 2 months Sponsored by: Apple, Inc.
Diffstat (limited to 'sys/security')
-rw-r--r--sys/security/audit/audit_pipe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/security/audit/audit_pipe.c b/sys/security/audit/audit_pipe.c
index 12382fa..1989a1d 100644
--- a/sys/security/audit/audit_pipe.c
+++ b/sys/security/audit/audit_pipe.c
@@ -144,7 +144,6 @@ struct audit_pipe {
u_int64_t ap_inserts; /* Records added. */
u_int64_t ap_reads; /* Records read. */
u_int64_t ap_drops; /* Records dropped. */
- u_int64_t ap_truncates; /* Records too long. */
/*
* Fields relating to pipe interest: global masks for unmatched
@@ -920,7 +919,7 @@ audit_pipe_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag,
break;
case AUDITPIPE_GET_TRUNCATES:
- *(u_int *)data = ap->ap_truncates;
+ *(u_int *)data = 0;
error = 0;
break;
OpenPOWER on IntegriCloud