Skip to content
Snippets Groups Projects
Commit a9cf2a63 authored by Oz Linden's avatar Oz Linden
Browse files

merge changes for MAINT-7594

parents 94c5f147 5c45b4ac
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,11 @@ ...@@ -63,6 +63,11 @@
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <sstream> #include <sstream>
// this can be removed once it is defined by the build for all forks
#ifndef ADDRESS_SIZE
# define ADDRESS_SIZE 32
#endif
class LLLoginInstance::Disposable { class LLLoginInstance::Disposable {
public: public:
virtual ~Disposable() {} virtual ~Disposable() {}
...@@ -605,6 +610,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia ...@@ -605,6 +610,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia
request_params["version"] = LLVersionInfo::getVersion(); request_params["version"] = LLVersionInfo::getVersion();
request_params["channel"] = LLVersionInfo::getChannel(); request_params["channel"] = LLVersionInfo::getChannel();
request_params["platform"] = mPlatform; request_params["platform"] = mPlatform;
request_params["address_size"] = ADDRESS_SIZE;
request_params["platform_version"] = mPlatformVersion; request_params["platform_version"] = mPlatformVersion;
request_params["platform_string"] = mPlatformVersionName; request_params["platform_string"] = mPlatformVersionName;
request_params["id0"] = mSerialNumber; request_params["id0"] = mSerialNumber;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment