diff options
author | wodry <wodry@users.noreply.github.com> | 2018-07-02 11:37:59 +0200 |
---|---|---|
committer | wodry <wodry@users.noreply.github.com> | 2018-07-02 16:41:13 +0200 |
commit | 07c493f2d1053d6a1c7d0ca1650da7b6f94c8948 (patch) | |
tree | b5665cf7a662eff21e3052d861da285fe9fea43a /src/torcontrol.cpp | |
parent | 686e97a0c7358291d628213447cf33e99cde7ce8 (diff) |
scripted-diff: Replace NET_TOR with NET_ONION
-BEGIN VERIFY SCRIPT-
sed --in-place'' --expression='s/NET_TOR/NET_ONION/g' $(git grep -I --files-with-matches 'NET_TOR')
-END VERIFY SCRIPT-
The --in-place'' hack is required for sed on macOS to edit files in-place without passing a backup extension.
Diffstat (limited to 'src/torcontrol.cpp')
-rw-r--r-- | src/torcontrol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/torcontrol.cpp b/src/torcontrol.cpp index 1791bfd7f7..1f42ab8fa8 100644 --- a/src/torcontrol.cpp +++ b/src/torcontrol.cpp @@ -528,8 +528,8 @@ void TorController::auth_cb(TorControlConnection& _conn, const TorControlReply& if (gArgs.GetArg("-onion", "") == "") { CService resolved(LookupNumeric("127.0.0.1", 9050)); proxyType addrOnion = proxyType(resolved, true); - SetProxy(NET_TOR, addrOnion); - SetLimited(NET_TOR, false); + SetProxy(NET_ONION, addrOnion); + SetLimited(NET_ONION, false); } // Finally - now create the service |