diff options
| author | MarcoFalke <[email protected]> | 2016-02-28 22:42:26 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-03-01 14:59:30 +0100 |
| commit | fa266524592cc18c789cc587d738fb0e548fd23a (patch) | |
| tree | 498e7a2b058b6a8c9f8ccfb11f5cc266af2f2062 /src/httprpc.cpp | |
| parent | [doc] Fix markdown (diff) | |
| download | discoin-fa266524592cc18c789cc587d738fb0e548fd23a.tar.xz discoin-fa266524592cc18c789cc587d738fb0e548fd23a.zip | |
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 a447a3eff..04d3386e9 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; |