diff options
Diffstat (limited to 'src/proxy.c')
| -rw-r--r-- | src/proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxy.c b/src/proxy.c index 9bc2c7fb1..d02558623 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -26,7 +26,7 @@ int git_proxy_options_dup(git_proxy_options *tgt, const git_proxy_options *src) memcpy(tgt, src, sizeof(git_proxy_options)); if (src->url) { tgt->url = git__strdup(src->url); - GITERR_CHECK_ALLOC(tgt->url); + GIT_ERROR_CHECK_ALLOC(tgt->url); } return 0; |
