summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/find_and_modify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/find_and_modify.cpp')
-rw-r--r--src/mongo/db/commands/find_and_modify.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/find_and_modify.cpp b/src/mongo/db/commands/find_and_modify.cpp
index c8726703b88..1a7aebbc9e1 100644
--- a/src/mongo/db/commands/find_and_modify.cpp
+++ b/src/mongo/db/commands/find_and_modify.cpp
@@ -366,7 +366,7 @@ namespace {
return parsedUpdateStatus;
}
- OpDebug* opDebug = &txn->getCurOp()->debug();
+ OpDebug* opDebug = &CurOp::get(txn)->debug();
// Explain calls of the findAndModify command are read-only, but we take write
// locks so that the timing information is more accurate.
@@ -491,7 +491,7 @@ namespace {
return appendCommandStatus(result, parsedUpdateStatus);
}
- OpDebug* opDebug = &txn->getCurOp()->debug();
+ OpDebug* opDebug = &CurOp::get(txn)->debug();
AutoGetOrCreateDb autoDb(txn, dbName, MODE_IX);
Lock::CollectionLock collLock(txn->lockState(), nsString.ns(), MODE_IX);