svn commit: r337734 - stable/10/bin/cat
Kyle Evans
kevans at FreeBSD.org
Tue Aug 14 01:57:12 UTC 2018
Author: kevans
Date: Tue Aug 14 01:57:11 2018
New Revision: 337734
URL: https://svnweb.freebsd.org/changeset/base/337734
Log:
MFC r322325: cat: fix build with -DNO_UDOM_SUPPORT
PR: 230489
Modified:
stable/10/bin/cat/cat.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/bin/cat/cat.c
==============================================================================
--- stable/10/bin/cat/cat.c Tue Aug 14 01:45:22 2018 (r337733)
+++ stable/10/bin/cat/cat.c Tue Aug 14 01:57:11 2018 (r337734)
@@ -51,11 +51,11 @@ __FBSDID("$FreeBSD$");
#ifndef NO_UDOM_SUPPORT
#include <sys/socket.h>
#include <sys/un.h>
-#include <errno.h>
#endif
#include <ctype.h>
#include <err.h>
+#include <errno.h>
#include <fcntl.h>
#include <locale.h>
#include <stddef.h>
More information about the svn-src-all
mailing list