diff options
Diffstat (limited to 'indra/newview/tests')
| -rw-r--r-- | indra/newview/tests/lllogininstance_test.cpp | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/indra/newview/tests/lllogininstance_test.cpp b/indra/newview/tests/lllogininstance_test.cpp index b43aaeaa33..aa05897c0b 100644 --- a/indra/newview/tests/lllogininstance_test.cpp +++ b/indra/newview/tests/lllogininstance_test.cpp @@ -186,6 +186,13 @@ void LLUIColorTable::saveUserSettings(void)const {}  #include "../llversioninfo.h"  const std::string &LLVersionInfo::getVersion() { return VIEWERLOGIN_VERSION; }  const std::string &LLVersionInfo::getChannel() { return VIEWERLOGIN_CHANNEL; } +const int MD5HEX_STR_SIZE = 33;  // char hex[MD5HEX_STR_SIZE]; with null + +bool llHashedUniqueID(unsigned char* id)  +{ +	memcpy( id, "66666666666666666666666666666666", MD5HEX_STR_SIZE ); +	return true; +}  //-----------------------------------------------------------------------------  #include "../llappviewer.h" | 
