summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--contrib/ssh-copy-id2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d323f69e..2fc1f12a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,10 @@
4 jchadima at redhat. 4 jchadima at redhat.
5 - (djm) [contrib/redhat/openssh.spec contrib/redhat/sshd.init] 5 - (djm) [contrib/redhat/openssh.spec contrib/redhat/sshd.init]
6 [contrib/suse/openssh.spec contrib/suse/rc.sshd] Updated RHEL and SLES 6 [contrib/suse/openssh.spec contrib/suse/rc.sshd] Updated RHEL and SLES
7 init scrips from imorgan AT nas.nasa.gov 7 init scrips from imorgan AT nas.nasa.gov; bz#1920
8 - (djm) [contrib/ssh-copy-id] Fix failure for cases where the path to the
9 identify file contained whitespace. bz#1828 patch from gwenael.lambrouin
10 AT gmail.com; ok dtucker@
8 11
920110807 1220110807
10 - (dtucker) OpenBSD CVS Sync 13 - (dtucker) OpenBSD CVS Sync
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 368645cb4..eca7cf520 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -25,7 +25,7 @@ else
25fi 25fi
26 26
27if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then 27if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then
28 GET_ID="cat ${ID_FILE}" 28 GET_ID="cat "${ID_FILE}\""
29fi 29fi
30 30
31if [ -z "`eval $GET_ID`" ]; then 31if [ -z "`eval $GET_ID`" ]; then