svn commit: r337733 - stable/11/bin/cat

Kyle Evans kevans at FreeBSD.org
Tue Aug 14 01:45:23 UTC 2018


Author: kevans
Date: Tue Aug 14 01:45:22 2018
New Revision: 337733
URL: https://svnweb.freebsd.org/changeset/base/337733

Log:
  MFC r322325: cat: fix build with -DNO_UDOM_SUPPORT
  
  PR:		230489

Modified:
  stable/11/bin/cat/cat.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/bin/cat/cat.c
==============================================================================
--- stable/11/bin/cat/cat.c	Tue Aug 14 00:14:17 2018	(r337732)
+++ stable/11/bin/cat/cat.c	Tue Aug 14 01:45:22 2018	(r337733)
@@ -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 <stdio.h>


More information about the svn-src-all mailing list