diff options
Diffstat (limited to 'src/remote.c')
-rw-r--r-- | src/remote.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c index ac7c43c78..948060da6 100644 --- a/src/remote.c +++ b/src/remote.c @@ -2363,7 +2363,8 @@ int git_remote_upload(git_remote *remote, const git_strarray *refspecs, const gi cbs = &remote->callbacks; if ((error = git_push_set_callbacks(push, cbs->pack_progress, cbs->payload, - cbs->push_transfer_progress, cbs->payload)) < 0) + cbs->push_transfer_progress, cbs->payload, + cbs->push_negotiation, cbs->payload)) < 0) goto cleanup; if ((error = git_push_finish(push)) < 0) |