summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richardipsum@fastmail.co.uk>2016-07-23 11:55:43 +0100
committerRichard Ipsum <richardipsum@fastmail.co.uk>2016-07-23 11:55:43 +0100
commit8b2ad593a885848eaacc6d5524a98e8ddf26c05c (patch)
tree3de05f33580866ebfa9218859f805644c6564ce6
parent877282ea6f60c453084e54738349c8574c9b97e2 (diff)
downloadlibgit2-8b2ad593a885848eaacc6d5524a98e8ddf26c05c.tar.gz
Make comment conform to style guide
Style guide says // style comments should be avoided.
-rw-r--r--src/transport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport.c b/src/transport.c
index 33f949e06..821d9bf3f 100644
--- a/src/transport.c
+++ b/src/transport.c
@@ -91,7 +91,8 @@ static int transport_find_fn(
/* 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://");
}