diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:14:38 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:14:38 -0500 |
commit | 710cc816f9fe491ea36055bade9843e9eeb0cc7e (patch) | |
tree | b9adb83a5d05e1fcd462fa18a56be692b6ecce05 /src | |
parent | 0c052b77d171c1723cb371f7c414ff28bad1a7d3 (diff) |
un-fix non-typo in ssh_proxycommand. (my mistake!)
Diffstat (limited to 'src')
-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 ca87c08..abe068d 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: |