summaryrefslogtreecommitdiff
path: root/util/base64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'util/base64.cpp')
-rw-r--r--util/base64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/base64.cpp b/util/base64.cpp
index e6a3865dc3b..cf2f485e762 100644
--- a/util/base64.cpp
+++ b/util/base64.cpp
@@ -111,7 +111,7 @@ namespace mongo {
void decode( stringstream& ss , const string& s ){
- uassert( "invalid base64" , s.size() % 4 == 0 );
+ uassert( 10270 , "invalid base64" , s.size() % 4 == 0 );
const unsigned char * data = (const unsigned char*)s.c_str();
int size = s.size();