summaryrefslogtreecommitdiff
path: root/bson/oid.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2010-07-27 17:01:45 -0400
committerMathias Stearn <mathias@10gen.com>2010-07-27 17:18:43 -0400
commit00679b9a2b0303213a5d088c961727e0ebff3168 (patch)
tree2b9fd0c5e834c8286c3810ad53fc95fb35cb30af /bson/oid.h
parent585b3797ff5aa6702e837ed7d87ac09a720e5793 (diff)
downloadmongo-00679b9a2b0303213a5d088c961727e0ebff3168.tar.gz
Test expect lowercase hex. May change them later.
Diffstat (limited to 'bson/oid.h')
-rw-r--r--bson/oid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bson/oid.h b/bson/oid.h
index ed671378bbf..c1bf34d9d58 100644
--- a/bson/oid.h
+++ b/bson/oid.h
@@ -58,7 +58,7 @@ namespace mongo {
/** The object ID output as 24 hex digits. */
string str() const {
- return toHex(data, 12);
+ return toHexLower(data, 12);
}
string toString() const { return str(); }