diff options
| author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-07-30 18:56:20 +0200 | 
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2011-08-18 02:34:07 +0200 | 
| commit | 0e20ba606655d25aa3fdeb9948a55e40107ac269 (patch) | |
| tree | 2ff7b9a73bc812391e74354a4f05d5589f007ea6 /src/remote.c | |
| parent | 65fbc48a175fd1413482d22eb6785c8f94acc3cb (diff) | |
| download | libgit2-0e20ba606655d25aa3fdeb9948a55e40107ac269.tar.gz | |
Add a generic send_wants
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/remote.c')
| -rw-r--r-- | src/remote.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/remote.c b/src/remote.c index 2812f5de6..997da00ce 100644 --- a/src/remote.c +++ b/src/remote.c @@ -31,6 +31,11 @@  #include "repository.h"  #include "remote.h" +int git_remote_send_wants(git_remote *remote, git_headarray *list) +{ +	return git_transport_send_wants(remote->transport, list); +} +  static int refspec_parse(git_refspec *refspec, const char *str)  {  	char *delim;  | 
