aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-02-28 22:42:26 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-03-01 14:59:30 +0100
commitfa266524592cc18c789cc587d738fb0e548fd23a (patch)
tree498e7a2b058b6a8c9f8ccfb11f5cc266af2f2062
parentfa97f95c15a7aee15feea500571a10a90f22ea8b (diff)
downloadbitcoin-fa266524592cc18c789cc587d738fb0e548fd23a.tar.xz
Make sure LogPrintf strings are line-terminated
-rw-r--r--src/httprpc.cpp2
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;