vendor/libgit2/src/remote.h in rugged-0.28.5 vs vendor/libgit2/src/remote.h in rugged-0.99.0

- old
+ new

@@ -27,11 +27,11 @@ git_vector active_refspecs; git_vector passive_refspecs; git_transport *transport; git_repository *repo; git_push *push; - git_transfer_progress stats; + git_indexer_progress stats; unsigned int need_pack; git_remote_autotag_option_t download_tags; int prune_refs; int passed_refspecs; }; @@ -43,10 +43,10 @@ #define GIT_REMOTE_CONNECTION_OPTIONS_INIT { NULL, NULL } int git_remote__connect(git_remote *remote, git_direction direction, const git_remote_callbacks *callbacks, const git_remote_connection_opts *conn); -const char* git_remote__urlfordirection(struct git_remote *remote, int direction); +int git_remote__urlfordirection(git_buf *url_out, struct git_remote *remote, int direction, const git_remote_callbacks *callbacks); int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_url); git_refspec *git_remote__matching_refspec(git_remote *remote, const char *refname); git_refspec *git_remote__matching_dst_refspec(git_remote *remote, const char *refname);