Windows build fixes.
This commit is contained in:
parent
d3ecd1d670
commit
ba0d73d102
3 changed files with 5 additions and 3 deletions
|
@ -1530,7 +1530,8 @@ public:
|
|||
json &controllerDbHttpPath = settings["controllerDbHttpPath"];
|
||||
if ((controllerDbHttpHost.is_string())&&(controllerDbHttpPort.is_number())) {
|
||||
_controllerDbPath = "http://";
|
||||
_controllerDbPath.append(controllerDbHttpHost);
|
||||
std::string h = controllerDbHttpHost;
|
||||
_controllerDbPath.append(h);
|
||||
char dbp[128];
|
||||
Utils::snprintf(dbp,sizeof(dbp),"%d",(int)controllerDbHttpPort);
|
||||
_controllerDbPath.push_back(':');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue