summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-08-17 12:01:44 +1000
committerDamien Miller <djm@mindrot.org>2011-08-17 12:01:44 +1000
commit44a6c9340ab0ae5fe616b0ae291187e8187f2ec6 (patch)
tree53a1aa1201e57621bb3a463968a20088698e6334
parent1a91c0f163f0a53e092e7832791a09d659567546 (diff)
- (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by
bisson AT archlinux.org
-rw-r--r--ChangeLog2
-rw-r--r--contrib/ssh-copy-id2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b315282..ab430749 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@
binary_pipe is no longer required on Cygwin; patch from Corinna Vinschen
- (djm) [configure.ac] error out if the host lacks the necessary bits for
an explicitly requested sandbox type
+ - (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by
+ bisson AT archlinux.org
20110812
- (dtucker) [openbsd-compat/port-linux.c] Bug 1924: Improve selinux context
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index eca7cf52..9451acee 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -25,7 +25,7 @@ else
fi
if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then
- GET_ID="cat "${ID_FILE}\""
+ GET_ID="cat \"${ID_FILE}\""
fi
if [ -z "`eval $GET_ID`" ]; then