diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-18 21:38:46 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-18 21:38:46 +0200 |
commit | 53e18cafdfb2bf24e8e0f8dd7355733eb31dc1c4 (patch) | |
tree | 55e6ece4dbd5865b373ddbfedaa669bbdbbd25b1 /src/daemon/daemon.cpp | |
parent | Merge pull request #1101 (diff) | |
parent | epee: optionally restrict HTTP service to a configurable user agent (diff) | |
download | monero-53e18cafdfb2bf24e8e0f8dd7355733eb31dc1c4.tar.xz |
Merge pull request #1102v0.10.0
eeb2bbc epee: optionally restrict HTTP service to a configurable user agent (moneromooo-monero)
Diffstat (limited to '')
-rw-r--r-- | src/daemon/daemon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index e79823d08..74875bfb0 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -124,7 +124,7 @@ bool t_daemon::run(bool interactive) if (interactive) { - rpc_commands = new daemonize::t_command_server(0, 0, false, mp_internals->rpc.get_server()); + rpc_commands = new daemonize::t_command_server(0, 0, "", false, mp_internals->rpc.get_server()); rpc_commands->start_handling(std::bind(&daemonize::t_daemon::stop_p2p, this)); } |