aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoind.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-08 10:52:42 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-08 10:52:42 +0200
commit917ac1dcc1d060c2e5b2bd225de24309a14b8c4c (patch)
treed9fb85d8adaca39b966ce3d04133293f2b89035e /src/bitcoind.cpp
parentadae2f1819f536ab3e39bb2b4ae3ee772447eb79 (diff)
downloadbitcoin-917ac1dcc1d060c2e5b2bd225de24309a14b8c4c.tar.xz
make fCommandLine a local variable in AppInit()
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r--src/bitcoind.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 407e1d28c7..add3b4e1f0 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -69,6 +69,7 @@ bool AppInit(int argc, char* argv[])
}
// Command-line RPC
+ bool fCommandLine = false;
for (int i = 1; i < argc; i++)
if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "bitcoin:"))
fCommandLine = true;