diff options
Diffstat (limited to 'contrib/torify.in')
-rwxr-xr-x | contrib/torify.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/torify.in b/contrib/torify.in index 6b1e440dc1..5bf7d4dbcf 100755 --- a/contrib/torify.in +++ b/contrib/torify.in @@ -52,7 +52,7 @@ then shift 1 fi -if [ "$PROG" == "$TSOCKS" ] +if [ "$PROG" = "$TSOCKS" ] then # Define our tsocks config file TSOCKS_CONF_FILE="/etc/tor/tor-tsocks.conf" @@ -70,7 +70,7 @@ then exit 1 fi fi -if [ "$PROG" == "$TORSOCKS" ] +if [ "$PROG" = "$TORSOCKS" ] then exec torsocks "$@" fi |