Date: Tue, 14 Aug 2018 01:57:11 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r337734 - stable/10/bin/cat Message-ID: <201808140157.w7E1vBMp033475@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808140157.w7E1vBMp033475>