diff options
author | Damien Miller <djm@mindrot.org> | 2011-08-17 12:01:44 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2011-08-17 12:01:44 +1000 |
commit | 44a6c9340ab0ae5fe616b0ae291187e8187f2ec6 (patch) | |
tree | 53a1aa1201e57621bb3a463968a20088698e6334 /contrib/ssh-copy-id | |
parent | 1a91c0f163f0a53e092e7832791a09d659567546 (diff) |
- (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by
bisson AT archlinux.org
Diffstat (limited to 'contrib/ssh-copy-id')
-rw-r--r-- | contrib/ssh-copy-id | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id index eca7cf520..9451aceec 100644 --- a/contrib/ssh-copy-id +++ b/contrib/ssh-copy-id | |||
@@ -25,7 +25,7 @@ else | |||
25 | fi | 25 | fi |
26 | 26 | ||
27 | if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then | 27 | if [ -z "`eval $GET_ID`" ] && [ -r "${ID_FILE}" ] ; then |
28 | GET_ID="cat "${ID_FILE}\"" | 28 | GET_ID="cat \"${ID_FILE}\"" |
29 | fi | 29 | fi |
30 | 30 | ||
31 | if [ -z "`eval $GET_ID`" ]; then | 31 | if [ -z "`eval $GET_ID`" ]; then |