summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@phys.columbia.edu>2008-07-01 11:24:44 -0400
committerJameson Graef Rollins <jrollins@phys.columbia.edu>2008-07-01 11:24:44 -0400
commite6d14b3efaa96cc55eae34556daf8f85f09b92f6 (patch)
tree6caba4c6354e3fdc5bc5b470922cba4587b83f85 /src
parent56e8fa26a4ce594f2c5c71b600df11fc9f255956 (diff)
small tweak to man page, and fix some alt port handling in proxy command.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/monkeysphere-ssh-proxycommand8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/monkeysphere-ssh-proxycommand b/src/monkeysphere-ssh-proxycommand
index 30d511a..b70f3c6 100755
--- a/src/monkeysphere-ssh-proxycommand
+++ b/src/monkeysphere-ssh-proxycommand
@@ -43,10 +43,12 @@ if [ -z "$PORT" ] ; then
fi
# set the host URI
-URI="ssh://${HOST}"
if [ "$PORT" != '22' ] ; then
- URI="${URI}:${PORT}"
+ HOSTP="${HOST}:${PORT}"
+else
+ HOSTP="${HOST}"
fi
+URI="ssh://${HOSTP}"
# if the host is in the gpg keyring...
if gpg --list-key ="${URI}" 2>&1 >/dev/null ; then
@@ -74,7 +76,7 @@ fi
export CHECK_KEYSERVER
# update the known_hosts file for the host
-monkeysphere update-known_hosts "$HOST"
+monkeysphere update-known_hosts "$HOSTP"
# exec a netcat passthrough to host for the ssh connection
if [ -z "$NO_CONNECT" ] ; then