summaryrefslogtreecommitdiff
path: root/contrib/ssh-copy-id
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-06-05 10:53:11 +0100
committerColin Watson <cjwatson@debian.org>2013-06-05 10:53:11 +0100
commitcd39a6faf86c969d04881fc77b8b3e4d15165eb4 (patch)
treef9f3f5c348467b17b8b9cf37b5d6800339820bc9 /contrib/ssh-copy-id
parentc0aae8eba3fb52a3fa87208d0066f2b8d7eca8b2 (diff)
Fix non-portable shell in ssh-copy-id (closes: #711162).
Diffstat (limited to 'contrib/ssh-copy-id')
-rw-r--r--contrib/ssh-copy-id2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 9f2817b6b..ae88e9958 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -165,7 +165,7 @@ done
165 165
166eval set -- "$SAVEARGS" 166eval set -- "$SAVEARGS"
167 167
168if [ $# == 0 ] ; then 168if [ $# = 0 ] ; then
169 usage 169 usage
170fi 170fi
171if [ $# != 1 ] ; then 171if [ $# != 1 ] ; then