diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-02-28 22:42:26 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-03-01 14:59:30 +0100 |
commit | fa266524592cc18c789cc587d738fb0e548fd23a (patch) | |
tree | 498e7a2b058b6a8c9f8ccfb11f5cc266af2f2062 /src/httprpc.cpp | |
parent | fa97f95c15a7aee15feea500571a10a90f22ea8b (diff) |
Make sure LogPrintf strings are line-terminated
Diffstat (limited to 'src/httprpc.cpp')
-rw-r--r-- | src/httprpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp index a447a3eff8..04d3386e9a 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -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; |