Date: Tue, 14 Aug 2018 01:45:22 +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-11@freebsd.org Subject: svn commit: r337733 - stable/11/bin/cat Message-ID: <201808140145.w7E1jMDB028269@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808140145.w7E1jMDB028269>