Skip to content

Commit

Permalink
Merge pull request #609 from Uncommon/update_libgit2
Browse files Browse the repository at this point in the history
Update to libgit2 0.25.0
  • Loading branch information
pietbrauer authored Jan 6, 2017
2 parents daf6f64 + c0b634f commit c26346e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion External/libgit2
Submodule libgit2 updated 535 files
2 changes: 1 addition & 1 deletion ObjectiveGit/GTRepository+RemoteOperations.m
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ - (BOOL)pushRefspecs:(NSArray *)refspecs toRemote:(GTRemote *)remote withOptions
remote_callbacks.push_transfer_progress = GTRemotePushTransferProgressCallback;
remote_callbacks.payload = &connectionInfo,

gitError = git_remote_connect(remote.git_remote, GIT_DIRECTION_PUSH, &remote_callbacks, NULL);
gitError = git_remote_connect(remote.git_remote, GIT_DIRECTION_PUSH, &remote_callbacks, NULL, NULL);
if (gitError != GIT_OK) {
if (error != NULL) *error = [NSError git_errorFor:gitError description:@"Failed to connect remote"];
return NO;
Expand Down

0 comments on commit c26346e

Please sign in to comment.