summaryrefslogtreecommitdiff
path: root/db/dbcommands.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-01-03 14:12:04 -0500
committerEliot Horowitz <eliot@10gen.com>2011-01-03 14:13:07 -0500
commit17621a52d3cb1bce3042011f538535b34bfde2f5 (patch)
treebc22239657345c318abc2bd6120c376305c34360 /db/dbcommands.cpp
parent5266e0fd8a0139a89ff606e690f7d9f22892abc9 (diff)
downloadmongo-17621a52d3cb1bce3042011f538535b34bfde2f5.tar.gz
use ConnectionId type instead of unsigned
Diffstat (limited to 'db/dbcommands.cpp')
-rw-r--r--db/dbcommands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/dbcommands.cpp b/db/dbcommands.cpp
index b40fd891868..ce9f0ef3ddf 100644
--- a/db/dbcommands.cpp
+++ b/db/dbcommands.cpp
@@ -111,7 +111,7 @@ namespace mongo {
Client& c = cc();
c.appendLastOp( result );
- result.append( "connectionId" , c.getConnectionId() );
+ result.appendNumber( "connectionId" , c.getConnectionId() );
BSONObj cmdObj = _cmdObj;
{