diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:11:07 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:11:07 -0500 |
commit | 0c052b77d171c1723cb371f7c414ff28bad1a7d3 (patch) | |
tree | 8b71693fa99e5839925a43c5bf018c2160b5337d /src/share/m | |
parent | c32c51f0326fa1d27ad8aba929edcf79ffa3adda (diff) |
fixing typo in ssh_proxycommand.
Diffstat (limited to 'src/share/m')
-rw-r--r-- | src/share/m/ssh_proxycommand | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/m/ssh_proxycommand b/src/share/m/ssh_proxycommand index abe068d..ca87c08 100644 --- a/src/share/m/ssh_proxycommand +++ b/src/share/m/ssh_proxycommand @@ -117,7 +117,7 @@ EOF # if no key match was made (and the "while read" subshell returned # 1) output how many keys were found - if (( returnCode != 1 )) ; then + if (( "$returnCode" != 1 )) ; then cat <<EOF | log info None of the found keys matched the key offered by the host. Run the following command for more info about the found keys: |