svn commit: r322325 - head/bin/cat

Ed Maste emaste at FreeBSD.org
Wed Aug 9 18:23:47 UTC 2017


Author: emaste
Date: Wed Aug  9 18:23:46 2017
New Revision: 322325
URL: https://svnweb.freebsd.org/changeset/base/322325

Log:
  cat: fix build with -DNO_UDOM_SUPPORT
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/bin/cat/cat.c

Modified: head/bin/cat/cat.c
==============================================================================
--- head/bin/cat/cat.c	Wed Aug  9 18:15:07 2017	(r322324)
+++ head/bin/cat/cat.c	Wed Aug  9 18:23:46 2017	(r322325)
@@ -51,12 +51,12 @@ __FBSDID("$FreeBSD$");
 #ifndef NO_UDOM_SUPPORT
 #include <sys/socket.h>
 #include <sys/un.h>
-#include <errno.h>
 #include <netdb.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-head mailing list