diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:35:25 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:35:25 +0200 |
| commit | eacf2124b6822d088199179b18d4587404408e0f (patch) | |
| tree | 48982250b525de443794c218d5386df03e728965 /src/daemon/daemon.cpp | |
| parent | 92969600811484c46edab4a85576265a8737e092 (diff) | |
| parent | ce7fcbb4aea884bb4bf433cf419ffa267f859c87 (diff) | |
| download | monzero-core-eacf2124b6822d088199179b18d4587404408e0f.tar.gz monzero-core-eacf2124b6822d088199179b18d4587404408e0f.tar.xz monzero-core-eacf2124b6822d088199179b18d4587404408e0f.zip | |
Merge pull request #1689
ce7fcbb4 Add server auth to monerod, and client auth to wallet-cli and wallet-rpc (Lee Clagett)
Diffstat (limited to 'src/daemon/daemon.cpp')
| -rw-r--r-- | src/daemon/daemon.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 287c30cb4..e40136a71 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -33,6 +33,7 @@ #include "misc_log_ex.h" #include "daemon/daemon.h" +#include "common/password.h" #include "common/util.h" #include "daemon/core.h" #include "daemon/p2p.h" @@ -127,7 +128,8 @@ bool t_daemon::run(bool interactive) if (interactive) { - rpc_commands = new daemonize::t_command_server(0, 0, "", false, mp_internals->rpc.get_server()); + // The first three variables are not used when the fourth is false + rpc_commands = new daemonize::t_command_server(0, 0, boost::none, false, mp_internals->rpc.get_server()); rpc_commands->start_handling(std::bind(&daemonize::t_daemon::stop_p2p, this)); } |
