diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2013-03-30 04:50:53 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2013-03-30 04:50:53 +0100 |
| commit | 81b8c9df4642328a7d0dc0920f1489748371d275 (patch) | |
| tree | 620b3013d991f5944933064ec949012708fc7be7 | |
| parent | f938259f7c2af0c5026fdfb53862e38472f2de28 (diff) | |
| download | libgit2-81b8c9df4642328a7d0dc0920f1489748371d275.tar.gz | |
transport: don't try to export nonexistent function
| -rw-r--r-- | include/git2/transport.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/git2/transport.h b/include/git2/transport.h index 783ea51bf..5e9968363 100644 --- a/include/git2/transport.h +++ b/include/git2/transport.h @@ -165,16 +165,6 @@ typedef struct git_transport { */ GIT_EXTERN(int) git_transport_new(git_transport **out, git_remote *owner, const char *url); -/** - * Function which checks to see if a transport could be created for the - * given URL (i.e. checks to see if libgit2 has a transport that supports - * the given URL's scheme) - * - * @param url The URL to check - * @return Zero if the URL is not valid; nonzero otherwise - */ -GIT_EXTERN(int) git_transport_valid_url(const char *url); - /* Signature of a function which creates a transport */ typedef int (*git_transport_cb)(git_transport **out, git_remote *owner, void *param); |
