Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Jun 2018 04:12:58 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r335311 - head/tests/sys/audit
Message-ID:  <201806180412.w5I4CwXq061380@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Mon Jun 18 04:12:58 2018
New Revision: 335311
URL: https://svnweb.freebsd.org/changeset/base/335311

Log:
  Fix 32-bit build after 335307
  
  This was correct in the final version on Phabricator, but somehow I screwed
  up applying the patch locally.
  
  Reported by:	linimon
  Pointy-hat-to:	asomers
  MFC after:	2 weeks
  X-MFC-With:	335307

Modified:
  head/tests/sys/audit/inter-process.c

Modified: head/tests/sys/audit/inter-process.c
==============================================================================
--- head/tests/sys/audit/inter-process.c	Mon Jun 18 02:06:16 2018	(r335310)
+++ head/tests/sys/audit/inter-process.c	Mon Jun 18 04:12:58 2018	(r335311)
@@ -460,7 +460,7 @@ ATF_TC_BODY(shmat_success, tc)
 
 	/* Check for shared memory ID and process address in record */
 	snprintf(ipcregex, sizeof(ipcregex), "shmat.*Shared Memory "
-			"IPC.*%d.*return,success,%d", shmid, (int)addr);
+			"IPC.*%d.*return,success", shmid);
 	check_audit(fds, ipcregex, pipefd);
 
 	/* Destroy the shared memory with ID = shmid */



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