summaryrefslogtreecommitdiff
path: root/src/utilities/util_load.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilities/util_load.c')
-rw-r--r--src/utilities/util_load.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utilities/util_load.c b/src/utilities/util_load.c
index 444cdc64c22..30f07a96dfd 100644
--- a/src/utilities/util_load.c
+++ b/src/utilities/util_load.c
@@ -95,8 +95,9 @@ load_dump(WT_SESSION *session)
* Single file dumps can only have two lines, the file name and
* the configuration information.
*/
- if (list[0] == NULL || list[1] == NULL || list[2] != NULL ||
- !WT_PREFIX_MATCH(list[0], "file:"))
+ if ((list[0] == NULL || list[1] == NULL || list[2] != NULL) ||
+ (WT_PREFIX_MATCH(list[0], "file:") &&
+ WT_PREFIX_MATCH(list[0], "lsm:")))
return (format());
entry = list;