tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 2529b29a75e24dcc1a6c92ef8f19a5916028a63f
parent d1af4d65df8b5ef8049707029335049db147829f
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Sat, 19 Jan 2019 17:39:48 +0200

Fix shellcheck warning SC2145 in torify script

Diffstat:
Achanges/ticket29070 | 2++
Mcontrib/client-tools/torify | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/changes/ticket29070 b/changes/ticket29070 @@ -0,0 +1,2 @@ + o Code simplification and refactoring (shell scripts): + - Fix shellcheck warning in torify script. Resolves issue 29070. diff --git a/contrib/client-tools/torify b/contrib/client-tools/torify @@ -53,7 +53,7 @@ pathfind() { if pathfind torsocks; then exec torsocks "$@" - echo "$0: Failed to exec torsocks $@" >&2 + echo "$0: Failed to exec torsocks $*" >&2 exit 1 else echo "$0: torsocks not found in your PATH. Perhaps it isn't installed? (tsocks is no longer supported, for security reasons.)" >&2