summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlosmn@github.com>2016-04-22 15:40:08 +0200
committerCarlos Martín Nieto <carlosmn@github.com>2016-04-22 15:40:08 +0200
commit512bd2c78f700186f92271e502b123ea27f75614 (patch)
tree3347d96224d017765901754375193cb0aad5a34f
parent1dc449105b329ea4f8ea9982bc2da869d231c04a (diff)
parent0bd774017381a4d7d7e0f4550e0385992c458086 (diff)
downloadlibgit2-512bd2c78f700186f92271e502b123ea27f75614.tar.gz
Merge pull request #3747 from libgit2/ethomson/warnings
:zap: some warnings
-rw-r--r--src/iterator.c7
-rw-r--r--src/stransport_stream.c6
-rw-r--r--src/transports/smart.c2
-rw-r--r--tests/online/clone.c4
4 files changed, 11 insertions, 8 deletions
diff --git a/src/iterator.c b/src/iterator.c
index ec44aac4c..87e0d53d4 100644
--- a/src/iterator.c
+++ b/src/iterator.c
@@ -206,8 +206,7 @@ GIT_INLINE(bool) iterator_has_started(
return false;
}
-GIT_INLINE(bool) iterator_has_ended(
- git_iterator *iter, const char *path, bool is_submodule)
+GIT_INLINE(bool) iterator_has_ended(git_iterator *iter, const char *path)
{
if (iter->end == NULL)
return false;
@@ -797,7 +796,7 @@ static int tree_iterator_advance(const git_index_entry **out, git_iterator *i)
continue;
/* if this path is after our end, stop */
- if (iterator_has_ended(&iter->base, iter->entry_path.ptr, false)) {
+ if (iterator_has_ended(&iter->base, iter->entry_path.ptr)) {
error = GIT_ITEROVER;
break;
}
@@ -2034,7 +2033,7 @@ static int index_iterator_advance(
continue;
}
- if (iterator_has_ended(&iter->base, entry->path, is_submodule)) {
+ if (iterator_has_ended(&iter->base, entry->path)) {
error = GIT_ITEROVER;
break;
}
diff --git a/src/stransport_stream.c b/src/stransport_stream.c
index 33b6c5c38..8d28b3ceb 100644
--- a/src/stransport_stream.c
+++ b/src/stransport_stream.c
@@ -116,11 +116,13 @@ int stransport_certificate(git_cert **out, git_stream *stream)
return 0;
}
-int stransport_set_proxy(git_stream *stream, const char *proxy)
+int stransport_set_proxy(
+ git_stream *stream,
+ const git_proxy_options *proxy_opts)
{
stransport_stream *st = (stransport_stream *) stream;
- return git_stream_set_proxy(st->io, proxy);
+ return git_stream_set_proxy(st->io, proxy_opts);
}
/*
diff --git a/src/transports/smart.c b/src/transports/smart.c
index 11b4b09a4..7a35c39d8 100644
--- a/src/transports/smart.c
+++ b/src/transports/smart.c
@@ -444,7 +444,7 @@ static void git_smart__free(git_transport *transport)
git_pkt_free(p);
git_vector_free(refs);
- git__free(t->proxy.url);
+ git__free((char *)t->proxy.url);
git_strarray_free(&t->custom_headers);
diff --git a/tests/online/clone.c b/tests/online/clone.c
index 0fc8d4271..04fd22d45 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -666,8 +666,10 @@ void test_online_clone__start_with_http(void)
static int called_proxy_creds;
static int proxy_creds(git_cred **out, const char *url, const char *username, unsigned int allowed, void *payload)
{
- GIT_UNUSED(payload);
+ GIT_UNUSED(url);
GIT_UNUSED(username);
+ GIT_UNUSED(allowed);
+ GIT_UNUSED(payload);
called_proxy_creds = 1;
return git_cred_userpass_plaintext_new(out, _remote_proxy_user, _remote_proxy_pass);