Skip to content

Commit

Permalink
Update libgit2 to include Xcode 7.3 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pietbrauer committed Mar 24, 2016
1 parent 79b1745 commit 4f39f5f
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 532 files
2 changes: 1 addition & 1 deletion ObjectiveGit/GTRepository+RemoteOperations.m
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,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);
gitError = git_remote_connect(remote.git_remote, GIT_DIRECTION_PUSH, &remote_callbacks, 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 4f39f5f

Please sign in to comment.