summaryrefslogtreecommitdiff
path: root/remote.go
diff options
context:
space:
mode:
authorSuhaib Mujahid <[email protected]>2020-10-22 09:18:11 -0400
committerGitHub <[email protected]>2020-10-22 06:18:11 -0700
commit5b6ce70b8997254ce48f8c24ba4198080e646fdd (patch)
treee9403a758fbf4a642fafaf22477525458162ef1b /remote.go
parent37b81b61f16f4bdf891a54dc8311bd5d2236e329 (diff)
refactor: Use undeprecated options init (#656)
This PR move form linking against the deprecated `init_options` functions to the renamed `options_init` functions. For more context see libgit2/libgit2@0b5ba0d744e69da5dc8c08d167c83dd87ed83af2 and libgit2/libgit2@c6184f0c4b209e462bf3f42ab20df2d13d8ee918.
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/remote.go b/remote.go
index 14e94a2..775c851 100644
--- a/remote.go
+++ b/remote.go
@@ -361,7 +361,7 @@ func pushUpdateReferenceCallback(refname, status *C.char, data unsafe.Pointer) i
}
func populateProxyOptions(ptr *C.git_proxy_options, opts *ProxyOptions) {
- C.git_proxy_init_options(ptr, C.GIT_PROXY_OPTIONS_VERSION)
+ C.git_proxy_options_init(ptr, C.GIT_PROXY_OPTIONS_VERSION)
if opts == nil {
return
}
@@ -685,7 +685,7 @@ func (o *Remote) RefspecCount() uint {
}
func populateFetchOptions(options *C.git_fetch_options, opts *FetchOptions) {
- C.git_fetch_init_options(options, C.GIT_FETCH_OPTIONS_VERSION)
+ C.git_fetch_options_init(options, C.GIT_FETCH_OPTIONS_VERSION)
if opts == nil {
return
}
@@ -701,7 +701,7 @@ func populateFetchOptions(options *C.git_fetch_options, opts *FetchOptions) {
}
func populatePushOptions(options *C.git_push_options, opts *PushOptions) {
- C.git_push_init_options(options, C.GIT_PUSH_OPTIONS_VERSION)
+ C.git_push_options_init(options, C.GIT_PUSH_OPTIONS_VERSION)
if opts == nil {
return
}