From owner-p4-projects@FreeBSD.ORG Sat Oct 23 14:40:16 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E448416A4D0; Sat, 23 Oct 2004 14:40:15 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA1C916A4CE for ; Sat, 23 Oct 2004 14:40:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A5F43D48 for ; Sat, 23 Oct 2004 14:40:15 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i9NEeFA3002137 for ; Sat, 23 Oct 2004 14:40:15 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9NEeF7h002134 for perforce@freebsd.org; Sat, 23 Oct 2004 14:40:15 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 23 Oct 2004 14:40:15 GMT Message-Id: <200410231440.i9NEeF7h002134@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 63568 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2004 14:40:16 -0000 http://perforce.freebsd.org/chv.cgi?CH=63568 Change 63568 by rwatson@rwatson_tislabs on 2004/10/23 14:39:20 Define AUDIT_ARG() in the !AUDIT case, as is done with audit system call enter/exit macros. Affected files ... .. //depot/projects/trustedbsd/audit3/sys/bsm/audit_kernel.h#7 edit Differences ... ==== //depot/projects/trustedbsd/audit3/sys/bsm/audit_kernel.h#7 (text+ko) ==== @@ -363,6 +363,9 @@ } while (0) #else /* !AUDIT */ +#define AUDIT_ARG(op, args...) do { \ + } while (0) + #define AUDIT_SYSCALL_ENTER(code, td) do { \ } while (0)