summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richardipsum@fastmail.co.uk>2016-07-23 11:47:59 +0100
committerRichard Ipsum <richardipsum@fastmail.co.uk>2016-07-23 11:47:59 +0100
commit877282ea6f60c453084e54738349c8574c9b97e2 (patch)
treedb5a0911dc617b0cbb29a899d035b8398cc1f647
parentc18a2bc4e013c07c497e9811f1d796852773d348 (diff)
downloadlibgit2-877282ea6f60c453084e54738349c8574c9b97e2.tar.gz
Fix outdated comment
SSH transport seems to be supported now.
-rw-r--r--src/transport.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/transport.c b/src/transport.c
index 327052fa3..33f949e06 100644
--- a/src/transport.c
+++ b/src/transport.c
@@ -89,8 +89,7 @@ static int transport_find_fn(
/* For other systems, perform the SSH check first, to avoid going to the
* filesystem if it is not necessary */
- /* It could be a SSH remote path. Check to see if there's a :
- * SSH is an unsupported transport mechanism in this version of libgit2 */
+ /* It could be a SSH remote path. Check to see if there's a : */
if (!definition && strrchr(url, ':')) {
// re-search transports again with ssh:// as url so that we can find a third party ssh transport
definition = transport_find_by_url("ssh://");