summaryrefslogtreecommitdiff
path: root/src/mongo/db/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/client.cpp')
-rw-r--r--src/mongo/db/client.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/db/client.cpp b/src/mongo/db/client.cpp
index 643a25fda05..339fcdc9d9d 100644
--- a/src/mongo/db/client.cpp
+++ b/src/mongo/db/client.cpp
@@ -128,15 +128,15 @@ ServiceContext::UniqueOperationContext Client::makeOperationContext() {
return getServiceContext()->makeOperationContext(this);
}
-void Client::setOperationContext(OperationContext* txn) {
+void Client::setOperationContext(OperationContext* opCtx) {
// We can only set the OperationContext once before resetting it.
- invariant(txn != NULL && _txn == NULL);
- _txn = txn;
+ invariant(opCtx != NULL && _opCtx == NULL);
+ _opCtx = opCtx;
}
void Client::resetOperationContext() {
- invariant(_txn != NULL);
- _txn = NULL;
+ invariant(_opCtx != NULL);
+ _opCtx = NULL;
}
std::string Client::clientAddress(bool includePort) const {