summaryrefslogtreecommitdiff
path: root/http-fetch.c
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2018-04-22 18:12:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-04-24 01:55:04 (GMT)
commit0b6b34295413410e4ca52df4671d2a217e56a57b (patch)
tree9e02df32fe16de0beb8f2cc7103174a6e7d5a7b0 /http-fetch.c
parent2e85a0c8abe29f9adad2ec0a977629ba90723973 (diff)
downloadgit-0b6b34295413410e4ca52df4671d2a217e56a57b.zip
git-0b6b34295413410e4ca52df4671d2a217e56a57b.tar.gz
git-0b6b34295413410e4ca52df4671d2a217e56a57b.tar.bz2
walker: drop fields of `struct walker` which are always 1
After the previous commit, both users of `struct walker` set `get_tree`, `get_history` and `get_all` to 1. Drop those fields and simplify the walker implementation accordingly. Let's hope that any out-of-tree users will not mind this change. They should notice that the compilation fails as they try to set these fields. (If they do not set them, note that `get_http_walker()` leaves them undefined, so the behavior will have been undefined all the time.) Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-fetch.c')
-rw-r--r--http-fetch.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/http-fetch.c b/http-fetch.c
index a1564f5..7b855d3 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -56,9 +56,6 @@ int cmd_main(int argc, const char **argv)
http_init(NULL, url, 0);
walker = get_http_walker(url);
- walker->get_tree = 1;
- walker->get_history = 1;
- walker->get_all = 1;
walker->get_verbosely = get_verbosely;
walker->get_recover = get_recover;