Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Dec 2016 02:51:03 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r310560 - head/sys/contrib/vchiq/interface/vchiq_arm
Message-ID:  <201612260251.uBQ2p3iX052298@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gonzo
Date: Mon Dec 26 02:51:03 2016
New Revision: 310560
URL: https://svnweb.freebsd.org/changeset/base/310560

Log:
  [vchi] replace non-reproducible __DATE__/__TIME__ with hardcoded string
  
  Although vchiq_build_date and vchiq_build_time are not used in current
  vchi driver at the moment, make sure these value will not leak into
  build later on if at some point they will be refered in some new
  imported code
  
  PR:		215494
  Reported by:	emaste
  MFC after:	1 week

Modified:
  head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c

Modified: head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c
==============================================================================
--- head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c	Mon Dec 26 01:18:07 2016	(r310559)
+++ head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c	Mon Dec 26 02:51:03 2016	(r310560)
@@ -35,8 +35,8 @@
 
 VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_hostname, "dc4-arm-01" );
 VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_version, "9245b4c35b99b3870e1f7dc598c5692b3c66a6f0 (tainted)" );
-VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_time,    __TIME__ );
-VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_date,    __DATE__ );
+VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_time,    "not available" );
+VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_date,    "not available" );
 
 const char *vchiq_get_build_hostname( void )
 {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612260251.uBQ2p3iX052298>