diff options
Diffstat (limited to 'contrib/osx')
-rwxr-xr-x | contrib/osx/Tor | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/osx/Tor b/contrib/osx/Tor index 2162617f3..88c297350 100755 --- a/contrib/osx/Tor +++ b/contrib/osx/Tor @@ -56,7 +56,7 @@ StopService () RestartService () { StopService; StartService; } -if [ "x$1" = x ]; then +if [ "$#" = 0 ]; then echo "Syntax: tor {start|stop}" exit 1 fi |