Skip to content
Snippets Groups Projects
Commit 31e0c912 authored by Bill Curtis's avatar Bill Curtis
Browse files

fixing transposed characters

parent 3fa05940
No related branches found
No related tags found
No related merge requests found
...@@ -2945,7 +2945,7 @@ bool process_login_success_response() ...@@ -2945,7 +2945,7 @@ bool process_login_success_response()
text = response["circuit_code"].asString(); text = response["circuit_code"].asString();
if(!text.empty()) if(!text.empty())
{ {
gMessageSystem->mOurCircuitCode = strtoult(ext.c_str(), NULL, 10); gMessageSystem->mOurCircuitCode = strtoul(text.c_str(), NULL, 10);
} }
std::string sim_ip_str = response["sim_ip"]; std::string sim_ip_str = response["sim_ip"];
std::string sim_port_str = response["sim_port"]; std::string sim_port_str = response["sim_port"];
......
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