summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-01-24 08:31:44 -0500
committerKeith Bostic <keith@wiredtiger.com>2014-01-24 08:31:56 -0500
commit78f36417a0e718feb8337733f2e7448c262bf3c0 (patch)
tree03ee7c536cafc69bfcaa8b48bca65e18f802466c /ext
parent38586ef1eeea03622aebaa5a53d5b0889dd6f168 (diff)
downloadmongo-78f36417a0e718feb8337733f2e7448c262bf3c0.tar.gz
Upgrade to Helium 2.1
Diffstat (limited to 'ext')
-rw-r--r--ext/datasources/helium/helium.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/datasources/helium/helium.c b/ext/datasources/helium/helium.c
index 8ab34069199..adaec8af756 100644
--- a/ext/datasources/helium/helium.c
+++ b/ext/datasources/helium/helium.c
@@ -3273,16 +3273,16 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config)
wtext = connection->get_extension_api(connection);
/* Check the library version */
-#if HE_VERSION_MAJOR != 2 || HE_VERSION_MINOR != 0
+#if HE_VERSION_MAJOR != 2 || HE_VERSION_MINOR != 1
ERET(wtext, NULL, EINVAL,
- "unsupported Levyx/Helium header file %d.%d, expected version 2.0",
+ "unsupported Levyx/Helium header file %d.%d, expected version 2.1",
HE_VERSION_MAJOR, HE_VERSION_MINOR);
#endif
he_version(&vmajor, &vminor);
- if (vmajor != 2 || vminor != 0)
+ if (vmajor != 2 || vminor != 1)
ERET(wtext, NULL, EINVAL,
"unsupported Levyx/Helium library version %d.%d, expected "
- "version 2.0", vmajor, vminor);
+ "version 2.1", vmajor, vminor);
/* Allocate and initialize the local data-source structure. */
if ((ds = calloc(1, sizeof(DATA_SOURCE))) == NULL)