Browse Source

Make sure LogPrintf strings are line-terminated

0.13
MarcoFalke 8 years ago
parent
commit
fa26652459
  1. 2
      src/httprpc.cpp

2
src/httprpc.cpp

@ -219,7 +219,7 @@ static bool InitRPCAuthentication() @@ -219,7 +219,7 @@ static bool InitRPCAuthentication()
return false;
}
} else {
LogPrintf("Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcuser for rpcauth auth generation.");
LogPrintf("Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcuser for rpcauth auth generation.\n");
strRPCUserColonPass = mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"];
}
return true;

Loading…
Cancel
Save