From owner-svn-src-head@freebsd.org Thu Sep 13 16:45:08 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 05E5310933D3; Thu, 13 Sep 2018 16:45:08 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BC8B7956C; Thu, 13 Sep 2018 16:45:07 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w8DGj5oN095099; Thu, 13 Sep 2018 09:45:05 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w8DGj5RS095098; Thu, 13 Sep 2018 09:45:05 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201809131645.w8DGj5RS095098@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r338653 - head/contrib/ofed/infiniband-diags/src In-Reply-To: <201809131641.w8DGfFA2015938@repo.freebsd.org> To: Glen Barber Date: Thu, 13 Sep 2018 09:45:05 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII 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: Thu, 13 Sep 2018 16:45:08 -0000 > Author: gjb > Date: Thu Sep 13 16:41:15 2018 > New Revision: 338653 > URL: https://svnweb.freebsd.org/changeset/base/338653 > > Log: > Remove __DATE__ and __TIME__ from ibdiag_common.c, replacing with > the hard-coded string "not available" to ensure reproducible builds. Remove the "replacing with...." it was changed to remove the __DATE__ and __TIME__ and replace it with nothing, this is a simple mistake as the patch evolved over a few emails. > > Discussed with: emaste > Approved by: re (rgrimes) > Sponsored by: The FreeBSD Foundation > > Modified: > head/contrib/ofed/infiniband-diags/src/ibdiag_common.c > > Modified: head/contrib/ofed/infiniband-diags/src/ibdiag_common.c > ============================================================================== > --- head/contrib/ofed/infiniband-diags/src/ibdiag_common.c Thu Sep 13 16:27:21 2018 (r338652) > +++ head/contrib/ofed/infiniband-diags/src/ibdiag_common.c Thu Sep 13 16:41:15 2018 (r338653) > @@ -84,8 +84,7 @@ static const struct ibdiag_opt *opts_map[256]; > > static const char *get_build_version(void) > { > - return "BUILD VERSION: " IBDIAG_VERSION " Build date: " __DATE__ " " > - __TIME__; > + return "BUILD VERSION: " IBDIAG_VERSION; > } > > static void pretty_print(int start, int width, const char *str) > > -- Rod Grimes rgrimes@freebsd.org