Skip to content

Commit

Permalink
Updated libgit2 fork to 73f1742
Browse files Browse the repository at this point in the history
  • Loading branch information
swisspol committed Oct 1, 2015
1 parent 9c3f4aa commit 3b36929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GitUpKit/Core/GCRemote.m
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ - (NSUInteger)_transfer:(git_direction)direction withRemote:(git_remote*)remote

git_remote_callbacks callbacks = GIT_REMOTE_CALLBACKS_INIT;
[self setRemoteCallbacks:&callbacks];
int status = git_remote_connect(remote, direction, &callbacks);
int status = git_remote_connect(remote, direction, &callbacks, NULL);
if (status != GIT_OK) {
LOG_LIBGIT2_ERROR(status);
if (error) {
Expand Down
2 changes: 1 addition & 1 deletion GitUpKit/Third-Party/libgit2
Submodule libgit2 updated 83 files
+33 −0 CMakeLists.txt
+1 −1 examples/network/ls-remote.c
+12 −1 include/git2/remote.h
+5 −0 include/git2/sys/transport.h
+3 −2 libgit2.pc.in
+7 −10 src/checkout.c
+35 −4 src/config_file.c
+1 −1 src/diff_print.c
+176 −75 src/fileops.c
+7 −10 src/fileops.h
+2 −2 src/odb_loose.c
+6 −1 src/openssl_stream.c
+21 −2 src/path.c
+7 −1 src/path.h
+2 −1 src/push.c
+1 −0 src/push.h
+2 −1 src/refdb_fs.c
+26 −6 src/remote.c
+27 −11 src/repository.c
+24 −13 src/submodule.c
+6 −0 src/transports/http.c
+81 −0 src/transports/smart.c
+1 −0 src/transports/smart.h
+18 −0 src/transports/winhttp.c
+14 −1 src/unix/posix.h
+8 −13 src/util.c
+15 −8 src/win32/path_w32.c
+9 −2 src/win32/posix_w32.c
+1 −1 tests/checkout/index.c
+81 −3 tests/checkout/tree.c
+2 −0 tests/clar_libgit2.c
+6 −3 tests/clone/nonetwork.c
+3 −3 tests/config/global.c
+8 −3 tests/config/write.c
+1 −1 tests/core/buffer.c
+4 −4 tests/core/copy.c
+29 −0 tests/core/dirent.c
+100 −28 tests/core/mkdir.c
+1 −1 tests/core/stat.c
+14 −7 tests/diff/binary.c
+5 −0 tests/index/rename.c
+1 −1 tests/index/tests.c
+3 −3 tests/network/remote/defaultbranch.c
+4 −4 tests/network/remote/local.c
+3 −3 tests/network/remote/remotes.c
+1 −1 tests/odb/alternates.c
+27 −0 tests/online/badssl.c
+27 −0 tests/online/clone.c
+6 −6 tests/online/fetch.c
+1 −2 tests/online/push.c
+1 −1 tests/refs/pack.c
+8 −8 tests/repo/discover.c
+3 −3 tests/repo/init.c
+3 −3 tests/repo/iterator.c
+2 −2 tests/repo/open.c
+24 −0 tests/repo/reservedname.c
+1 −0 tests/resources/sub.git/HEAD
+8 −0 tests/resources/sub.git/config
+ tests/resources/sub.git/index
+1 −0 tests/resources/sub.git/logs/HEAD
+1 −0 tests/resources/sub.git/logs/refs/heads/master
+ tests/resources/sub.git/objects/10/ddd6d257e01349d514541981aeecea6b2e741d
+ tests/resources/sub.git/objects/17/6a458f94e0ea5272ce67c36bf30b6be9caf623
+ tests/resources/sub.git/objects/94/c7d78d85c933d1d95b56bc2de01833ba8559fb
+ tests/resources/sub.git/objects/b7/a59b3f4ea13b985f8a1e0d3757d5cd3331add8
+ tests/resources/sub.git/objects/d0/ee23c41b28746d7e822511d7838bce784ae773
+1 −0 tests/resources/sub.git/refs/heads/master
+1 −0 tests/resources/super/.gitted/COMMIT_EDITMSG
+1 −0 tests/resources/super/.gitted/HEAD
+10 −0 tests/resources/super/.gitted/config
+ tests/resources/super/.gitted/index
+ tests/resources/super/.gitted/objects/51/589c218bf77a8da9e9d8dbc097d76a742726c4
+ tests/resources/super/.gitted/objects/79/d0d58ca6aa1688a073d280169908454cad5b91
+ tests/resources/super/.gitted/objects/d7/57768b570a83e80d02edcc1032db14573e5034
+1 −0 tests/resources/super/.gitted/refs/heads/master
+3 −0 tests/resources/super/gitmodules
+7 −7 tests/status/ignore.c
+5 −5 tests/status/worktree.c
+1 −1 tests/submodule/lookup.c
+5 −5 tests/submodule/status.c
+16 −0 tests/submodule/submodule_helpers.c
+1 −0 tests/submodule/submodule_helpers.h
+60 −0 tests/win32/longpath.c

0 comments on commit 3b36929

Please sign in to comment.