Date: Fri, 19 Dec 2008 12:34:49 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 154995 for review Message-ID: <200812191234.mBJCYnLR096260@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=154995 Change 154995 by rwatson@rwatson_cinnamon on 2008/12/19 12:34:41 bsm_errno.c doesn't require endian.h since errno values on the wire are single-byte, so don't do the include magic/evil. Affected files ... .. //depot/projects/trustedbsd/openbsm/libbsm/bsm_errno.c#12 edit Differences ... ==== //depot/projects/trustedbsd/openbsm/libbsm/bsm_errno.c#12 (text+ko) ==== @@ -26,26 +26,12 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $P4: //depot/projects/trustedbsd/openbsm/libbsm/bsm_errno.c#11 $ + * $P4: //depot/projects/trustedbsd/openbsm/libbsm/bsm_errno.c#12 $ */ #include <sys/types.h> #include <config/config.h> -#ifdef HAVE_SYS_ENDIAN_H -#include <sys/endian.h> -#else /* !HAVE_SYS_ENDIAN_H */ -#ifdef HAVE_MACHINE_ENDIAN_H -#include <machine/endian.h> -#else /* !HAVE_MACHINE_ENDIAN_H */ -#ifdef HAVE_ENDIAN_H -#include <endian.h> -#else /* !HAVE_ENDIAN_H */ -#error "No supported endian.h" -#endif /* !HAVE_ENDIAN_H */ -#endif /* !HAVE_MACHINE_ENDIAN_H */ -#include <compat/endian.h> -#endif /* !HAVE_SYS_ENDIAN_H */ #include <bsm/audit_errno.h> #include <bsm/libbsm.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812191234.mBJCYnLR096260>