Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Mar 2006 18:27:38 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 94188 for review
Message-ID:  <200603281827.k2SIRcM6052413@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=94188

Change 94188 by rwatson@rwatson_zoo on 2006/03/28 18:27:19

	Don't need a pointer to a pointer, just a pointer.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.h#2 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.h#2 (text+ko) ====

@@ -25,7 +25,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.h#1 $
+ * $P4: //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.h#2 $
  */
 
 #define	AUDITFILTERD_CONFFILE	"/etc/security/audit_filter"
@@ -54,11 +54,11 @@
 	 * Fields provided by or extracted from the module.
 	 */
 	void						*am_instance;
-	audit_filter_attach_t				*am_attach;
-	audit_filter_reinit_t				*am_reinit;
-	audit_filter_record_t				*am_record;
-	audit_filter_bsmrecord_t			*am_bsmrecord;
-	audit_filter_detach_t				*am_detach;
+	audit_filter_attach_t				 am_attach;
+	audit_filter_reinit_t				 am_reinit;
+	audit_filter_record_t				 am_record;
+	audit_filter_bsmrecord_t			 am_bsmrecord;
+	audit_filter_detach_t				 am_detach;
 
 	/*
 	 * Fields for maintaining the list of modules.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603281827.k2SIRcM6052413>