summaryrefslogtreecommitdiff
path: root/src/meta
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2013-01-28 16:20:51 -0500
committerSusan LoVerso <sue@wiredtiger.com>2013-01-28 16:20:51 -0500
commit865bdfa63fb5f8048dff12b694fa13e923c4f6dc (patch)
tree77f695379040d06b7bd7b3351c6ea27212be6ea7 /src/meta
parent3cb282da2ba437708167ef9161823f8e841949ba (diff)
downloadmongo-865bdfa63fb5f8048dff12b694fa13e923c4f6dc.tar.gz
Don't translate errno. #443.
Diffstat (limited to 'src/meta')
-rw-r--r--src/meta/meta_turtle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meta/meta_turtle.c b/src/meta/meta_turtle.c
index 28ca8908183..d81f562aa4e 100644
--- a/src/meta/meta_turtle.c
+++ b/src/meta/meta_turtle.c
@@ -69,7 +69,7 @@ __wt_meta_turtle_read(
/* Open the turtle file. */
WT_RET(__wt_filename(session, WT_METADATA_TURTLE, &path));
- WT_ERR_TEST((fp = fopen(path, "r")) == NULL, WT_NOTFOUND);
+ WT_ERR_TEST((fp = fopen(path, "r")) == NULL, __wt_errno());
/* Search for the key. */
WT_ERR(__wt_scr_alloc(session, 512, &buf));