summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/touch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/touch.cpp')
-rw-r--r--src/mongo/db/commands/touch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/commands/touch.cpp b/src/mongo/db/commands/touch.cpp
index a1fe53e84d8..1f28da9e3fc 100644
--- a/src/mongo/db/commands/touch.cpp
+++ b/src/mongo/db/commands/touch.cpp
@@ -82,7 +82,7 @@ public:
}
TouchCmd() : Command("touch") {}
- virtual bool run(OperationContext* txn,
+ virtual bool run(OperationContext* opCtx,
const string& dbname,
BSONObj& cmdObj,
int,
@@ -102,7 +102,7 @@ public:
return false;
}
- AutoGetCollectionForRead context(txn, nss);
+ AutoGetCollectionForRead context(opCtx, nss);
Collection* collection = context.getCollection();
if (!collection) {
@@ -111,7 +111,7 @@ public:
}
return appendCommandStatus(result,
- collection->touch(txn, touch_data, touch_indexes, &result));
+ collection->touch(opCtx, touch_data, touch_indexes, &result));
}
};
static TouchCmd touchCmd;