aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-14 17:05:30 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-14 17:42:03 +1200
commitb4951b068443f80e887ef4f5d54576c6389428da (patch)
tree6b4b93701abb4e5123d5e6b3f7f6eca5300230cc
parentNo need to quote arithmetic context (diff)
downloadpsshd-b4951b068443f80e887ef4f5d54576c6389428da.tar.gz
psshd-b4951b068443f80e887ef4f5d54576c6389428da.zip
No need to quote var in case statement
-rwxr-xr-xpsshd2
1 files changed, 1 insertions, 1 deletions
diff --git a/psshd b/psshd
index d2e0337..c963d4c 100755
--- a/psshd
+++ b/psshd
@@ -31,7 +31,7 @@ done
# Get port in options
while getopts ':p:' opt; do
- case "$opt" in
+ case $opt in
p)
port="$OPTARG"
;;