vendor/libgit2/src/transport.c in rugged-0.25.1.1 vs vendor/libgit2/src/transport.c in rugged-0.26.0b1
- old
+ new
@@ -119,10 +119,10 @@
git_transport *transport;
void *param;
int error;
if ((error = transport_find_fn(&fn, url, ¶m)) == GIT_ENOTFOUND) {
- giterr_set(GITERR_NET, "Unsupported URL protocol");
+ giterr_set(GITERR_NET, "unsupported URL protocol");
return -1;
} else if (error < 0)
return error;
if ((error = fn(&transport, owner, param)) < 0)