summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/repl_info.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/repl_info.cpp')
-rw-r--r--src/mongo/db/repl/repl_info.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/repl_info.cpp b/src/mongo/db/repl/repl_info.cpp
index 9d3b1e02436..77aa8d7ffc6 100644
--- a/src/mongo/db/repl/repl_info.cpp
+++ b/src/mongo/db/repl/repl_info.cpp
@@ -89,8 +89,8 @@ namespace repl {
ctx.ctx().db()->getCollection(txn,
localSources)));
BSONObj obj;
- Runner::RunnerState state;
- while (Runner::RUNNER_ADVANCED == (state = exec->getNext(&obj, NULL))) {
+ PlanExecutor::ExecState state;
+ while (PlanExecutor::ADVANCED == (state = exec->getNext(&obj, NULL))) {
src.push_back(obj);
}
}