We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5453e66 commit 40c4899Copy full SHA for 40c4899
src/init.cpp
@@ -716,11 +716,11 @@ void InitParameterInteraction(ArgsManager& args)
716
{
717
// when specifying an explicit binding address, you want to listen on it
718
// even when -connect or -proxy is specified
719
- if (args.IsArgSet("-bind")) {
+ if (!args.GetArgs("-bind").empty()) {
720
if (args.SoftSetBoolArg("-listen", true))
721
LogInfo("parameter interaction: -bind set -> setting -listen=1\n");
722
}
723
- if (args.IsArgSet("-whitebind")) {
+ if (!args.GetArgs("-whitebind").empty()) {
724
725
LogInfo("parameter interaction: -whitebind set -> setting -listen=1\n");
726
0 commit comments