Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Jan 2006 21:45:11 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 89754 for review
Message-ID:  <200601152145.k0FLjBY7024561@repoman.freebsd.org>

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

Change 89754 by rwatson@rwatson_fledge on 2006/01/15 21:44:27

	Move audit_event_map from libbsm.h to bsm_mask.h as it is a
	private data structure used to maintain a cache of audit events,
	not part of the public API.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/bsm/libbsm.h#10 edit
.. //depot/projects/trustedbsd/openbsm/libbsm/bsm_mask.c#7 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/bsm/libbsm.h#10 (text+ko) ====

@@ -133,10 +133,6 @@
 } while(0)
 
 __BEGIN_DECLS
-struct audit_event_map {
-	struct au_event_ent		*ev;
-	LIST_ENTRY(audit_event_map)	 ev_list;
-};
 
 /*
  * Internal representation of audit user in libnsl.

==== //depot/projects/trustedbsd/openbsm/libbsm/bsm_mask.c#7 (text+ko) ====

@@ -46,6 +46,10 @@
  * XXXRW: Note that despite (mutex), load_event_table() could race with
  * other consumers of the getauevents() API.
  */
+struct audit_event_map {
+	struct au_event_ent		*ev;
+	LIST_ENTRY(audit_event_map)	 ev_list;
+};
 static LIST_HEAD(, audit_event_map)	ev_cache;
 
 static int



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