summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordtucker <dtucker>2013-06-05 12:48:44 +0000
committerdtucker <dtucker>2013-06-05 12:48:44 +0000
commit9197cfc50f8b07de45d7258bc05247b345374c1b (patch)
tree53003a05af8ba8dc857382ef8540cede9fc33c36
parentd2452b785acbd9448e9f4b7e3be190215e9d4752 (diff)
downloadopenssh-9197cfc50f8b07de45d7258bc05247b345374c1b.tar.gz
- (dtucker) [contrib/ssh-copy-id] bz#2117: Use portable operator in test.
Patch from cjwatson at debian.
-rw-r--r--ChangeLog6
-rw-r--r--contrib/ssh-copy-id2
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ad5b66a7..00c74c3e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
20130605
- - (dtucker) Enable sha256 kex methods based on the presence of the necessary
- functions, not from the openssl version.
+ - (dtucker) [myproposal.h] Enable sha256 kex methods based on the presence of
+ the necessary functions, not from the openssl version.
+ - (dtucker) [contrib/ssh-copy-id] bz#2117: Use portable operator in test.
+ Patch from cjwatson at debian.
20130602
- (tim) [Makefile.in] Make Solaris, UnixWare, & OpenServer linkers happy
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 9f2817b6..ae88e995 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -165,7 +165,7 @@ done
eval set -- "$SAVEARGS"
-if [ $# == 0 ] ; then
+if [ $# = 0 ] ; then
usage
fi
if [ $# != 1 ] ; then