From owner-svn-src-head@freebsd.org Tue Jul 3 15:48:35 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1E0E102B8C7; Tue, 3 Jul 2018 15:48:35 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8284988451; Tue, 3 Jul 2018 15:48:35 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 63BC11E16E; Tue, 3 Jul 2018 15:48:35 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w63FmZiQ037713; Tue, 3 Jul 2018 15:48:35 GMT (envelope-from br@FreeBSD.org) Received: (from br@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w63FmYJl037710; Tue, 3 Jul 2018 15:48:34 GMT (envelope-from br@FreeBSD.org) Message-Id: <201807031548.w63FmYJl037710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: br set sender to br@FreeBSD.org using -f From: Ruslan Bukin Date: Tue, 3 Jul 2018 15:48:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335893 - in head: contrib/blacklist/bin lib/libpjdlog sbin/hastd X-SVN-Group: head X-SVN-Commit-Author: br X-SVN-Commit-Paths: in head: contrib/blacklist/bin lib/libpjdlog sbin/hastd X-SVN-Commit-Revision: 335893 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2018 15:48:36 -0000 Author: br Date: Tue Jul 3 15:48:34 2018 New Revision: 335893 URL: https://svnweb.freebsd.org/changeset/base/335893 Log: Revert 335888 ("Ensure va_list is declared by including stdarg.h.") The issue was caused by header pollution brought by GCC 8.1. We now have to remove include-fixed headers in the GCC installation directory. Sponsored by: DARPA, AFRL Pointed out by: jhb Modified: head/contrib/blacklist/bin/blacklistctl.c head/lib/libpjdlog/pjdlog.c head/sbin/hastd/pjdlog.c Modified: head/contrib/blacklist/bin/blacklistctl.c ============================================================================== --- head/contrib/blacklist/bin/blacklistctl.c Tue Jul 3 15:24:09 2018 (r335892) +++ head/contrib/blacklist/bin/blacklistctl.c Tue Jul 3 15:48:34 2018 (r335893) @@ -35,7 +35,6 @@ #include __RCSID("$NetBSD: blacklistctl.c,v 1.21 2016/11/02 03:15:07 jnemeth Exp $"); -#include #include #include #ifdef HAVE_LIBUTIL_H Modified: head/lib/libpjdlog/pjdlog.c ============================================================================== --- head/lib/libpjdlog/pjdlog.c Tue Jul 3 15:24:09 2018 (r335892) +++ head/lib/libpjdlog/pjdlog.c Tue Jul 3 15:48:34 2018 (r335893) @@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include +#include #include #include #include Modified: head/sbin/hastd/pjdlog.c ============================================================================== --- head/sbin/hastd/pjdlog.c Tue Jul 3 15:24:09 2018 (r335892) +++ head/sbin/hastd/pjdlog.c Tue Jul 3 15:48:34 2018 (r335893) @@ -41,8 +41,8 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include +#include #include #include #include