diff options
| author | Edward Thomson <ethomson@github.com> | 2016-08-04 13:20:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-04 13:20:49 -0400 |
| commit | 0d84de0208fe2999522debee9f6afbd6d5f45d26 (patch) | |
| tree | 01dd8f6a99be7a34229e15e3215b88a7e1c02770 | |
| parent | 78b500bf59ad302d77f3291f9a57adee624032a4 (diff) | |
| parent | 8b2ad593a885848eaacc6d5524a98e8ddf26c05c (diff) | |
| download | libgit2-0d84de0208fe2999522debee9f6afbd6d5f45d26.tar.gz | |
Merge pull request #3869 from richardipsum/fix-outdated-comment
Fix outdated comment
| -rw-r--r-- | src/transport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport.c b/src/transport.c index 32f8464f6..f08d2dc68 100644 --- a/src/transport.c +++ b/src/transport.c @@ -87,10 +87,10 @@ 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 + /* re-search transports again with ssh:// as url + * so that we can find a third party ssh transport */ definition = transport_find_by_url("ssh://"); } |
