Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Feb 2006 01:11:38 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 91354 for review
Message-ID:  <200602080111.k181Bckc035084@repoman.freebsd.org>

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

Change 91354 by rwatson@rwatson_peppercorn on 2006/02/08 01:10:56

	Sort types.h before other include files, as Darwin's dirrent.h
	depends on types.h.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/bin/audit/audit.c#5 edit
.. //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.c#12 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/bin/audit/audit.c#5 (text+ko) ====

@@ -30,7 +30,7 @@
  *
  * @APPLE_BSD_LICENSE_HEADER_END@
  *
- * $P4: //depot/projects/trustedbsd/openbsm/bin/audit/audit.c#4 $
+ * $P4: //depot/projects/trustedbsd/openbsm/bin/audit/audit.c#5 $
  */
 /*
  * Program to trigger the audit daemon with a message that is either:
@@ -40,8 +40,8 @@
  *
  */
 
+#include <sys/types.h>
 #include <sys/queue.h>
-#include <sys/types.h>
 #include <sys/uio.h>
 
 #include <bsm/audit.h>

==== //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.c#12 (text+ko) ====

@@ -30,14 +30,14 @@
  *
  * @APPLE_BSD_LICENSE_HEADER_END@
  *
- * $P4: //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.c#11 $
+ * $P4: //depot/projects/trustedbsd/openbsm/bin/auditd/auditd.c#12 $
  */
 
+#include <sys/types.h>
 #include <sys/dirent.h>
 #include <sys/mman.h>
 #include <sys/queue.h>
 #include <sys/stat.h>
-#include <sys/types.h>
 #include <sys/wait.h>
 
 #include <bsm/audit.h>



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