Commit 51295661 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Exec /usr/bin/ssh from ~/.ssh/ssh

parent cfa67ec6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -63,10 +63,10 @@ if type gpg-agent; then
fi >&2

case " $*" in
	*' -F'*) ${SSH_BIN} "$@" ;;
	*' -F'*) exec ${SSH_BIN} "$@" ;;
	*)
		make_config
		PATH="`dirname $0`:$PATH"; export PATH
		${SSH_BIN} -F "$CONFIG" "$@"
		exec ${SSH_BIN} -F "$CONFIG" "$@"
		;;
esac