summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-04-15 14:55:36 -0400
committerKeith Bostic <keith@wiredtiger.com>2015-04-15 14:55:36 -0400
commit38f5d35e0d23323f79c67e167388e962cb159016 (patch)
treef3745be51f3a0ecae860594681d693d1ec43c870 /ext
parentf75adfa400cfe49abbb8d7d066986fae71b99dbd (diff)
downloadmongo-38f5d35e0d23323f79c67e167388e962cb159016.tar.gz
Change WT_CONNECTION.configure_method() to do the same name translation
as wiredtiger_config_validate(), that is, specify a method name using the concatentation of the public handle name, a period and a method name, rather than using our internal configuration string names. Move the WT_CONNECTION.configure_method() code into config/config_api.c.
Diffstat (limited to 'ext')
-rw-r--r--ext/datasources/helium/helium.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/datasources/helium/helium.c b/ext/datasources/helium/helium.c
index 3fc521d93b2..2b7cb5f7d4c 100644
--- a/ext/datasources/helium/helium.c
+++ b/ext/datasources/helium/helium.c
@@ -3427,7 +3427,7 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config)
/* Add Helium-specific WT_SESSION.create configuration options. */
for (p = session_create_opts; *p != NULL; ++p)
if ((ret = connection->configure_method(connection,
- "session.create", "helium:", *p, "boolean", NULL)) != 0)
+ "WT_SESSION.create", "helium:", *p, "boolean", NULL)) != 0)
EMSG_ERR(wtext, NULL, ret,
"WT_CONNECTION.configure_method: session.create: "
"%s: %s",