mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 18:43:13 -04:00
is being removed. No portrev bump needed since the kernel will continue to accept this flag for old binaries even after support for it in new binaries is removed. PR: 193961 Approved by: portmgr (antoine)
11 lines
457 B
C++
11 lines
457 B
C++
--- tools/jtest/jtest.cc.orig 2014-10-08 13:50:58.000000000 -0400
|
|
+++ tools/jtest/jtest.cc 2014-10-08 13:51:12.000000000 -0400
|
|
@@ -2689,7 +2689,7 @@
|
|
ink_assert( !ftruncate(fd,numbytes) );
|
|
bytes = (unsigned char *)
|
|
mmap(NULL,numbytes,PROT_READ|PROT_WRITE,
|
|
- MAP_SHARED|MAP_NORESERVE,
|
|
+ MAP_SHARED,
|
|
fd, 0);
|
|
if (bytes == (unsigned char*)MAP_FAILED || !bytes)
|
|
panic("unable to map URL Hash file\n");
|