summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/block/block_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/block/block_map.c')
-rw-r--r--src/third_party/wiredtiger/src/block/block_map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/block/block_map.c b/src/third_party/wiredtiger/src/block/block_map.c
index ce6fe8602f5..d2c70fb4c49 100644
--- a/src/third_party/wiredtiger/src/block/block_map.c
+++ b/src/third_party/wiredtiger/src/block/block_map.c
@@ -46,7 +46,7 @@ __wt_block_map(WT_SESSION_IMPL *session, WT_BLOCK *block,
* There may be no underlying functionality.
*/
handle = block->fh->handle;
- if (handle->map == NULL)
+ if (handle->fh_map == NULL)
return (0);
/*
@@ -54,7 +54,7 @@ __wt_block_map(WT_SESSION_IMPL *session, WT_BLOCK *block,
* Ignore not-supported errors, we'll read the file through the cache
* if map fails.
*/
- ret = handle->map(handle,
+ ret = handle->fh_map(handle,
(WT_SESSION *)session, mapped_regionp, lengthp, mapped_cookiep);
if (ret == ENOTSUP) {
*(void **)mapped_regionp = NULL;
@@ -76,6 +76,6 @@ __wt_block_unmap(WT_SESSION_IMPL *session,
/* Unmap the file from memory. */
handle = block->fh->handle;
- return (handle->unmap(handle,
+ return (handle->fh_unmap(handle,
(WT_SESSION *)session, mapped_region, length, mapped_cookie));
}