Date: Wed, 9 Aug 2017 18:23:46 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r322325 - head/bin/cat Message-ID: <201708091823.v79INktO036150@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708091823.v79INktO036150>