summaryrefslogtreecommitdiff
path: root/db/storage.h
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-08-28 10:17:04 -0400
committerEliot Horowitz <eliot@10gen.com>2009-08-28 10:17:04 -0400
commitaf2d29ca3008f098ccfea7199538e96ee0861218 (patch)
treefd04e47fc219d59b967cea5a00d52ec353b4b1cf /db/storage.h
parent2069e630536a7c38a28831ebc62ba5963f632b19 (diff)
downloadmongo-af2d29ca3008f098ccfea7199538e96ee0861218.tar.gz
validate() says invalid if more than 20 files SERVER-269
Diffstat (limited to 'db/storage.h')
-rw-r--r--db/storage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/storage.h b/db/storage.h
index ac436f71021..c8b7f7a3c88 100644
--- a/db/storage.h
+++ b/db/storage.h
@@ -55,7 +55,7 @@ namespace mongo {
bool questionable() {
return ofs < -1 ||
fileNo < -1 ||
- fileNo > 20;
+ fileNo > 524288;
}
bool isNull() const {