aboutsummaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorDave Borowitz <dborowitz@google.com>2015-08-19 11:26:43 -0400
committerJunio C Hamano <gitster@pobox.com>2015-08-19 12:41:54 -0700
commit87c0d08b3d92c55c233c8a95294a2232a97d97eb (patch)
treec0d371088c1f07cf15dfc6d4d2c5c8dbfca6500e /transport.h
parentb9299a2bb15a2fe851d0a463d8c0567743960c61 (diff)
downloadgit-87c0d08b3d92c55c233c8a95294a2232a97d97eb.tar.gz
git-87c0d08b3d92c55c233c8a95294a2232a97d97eb.tar.xz
transport: remove git_transport_options.push_cert
This field was set in transport_set_option, but never read in the push code. The push code basically ignores the smart_options field entirely, and derives its options from the flags arguments to the push* callbacks. Note that in git_transport_push there are already several args set from flags that have no corresponding field in git_transport_options; after this change, push_cert is just like those. Signed-off-by: Dave Borowitz <dborowitz@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/transport.h b/transport.h
index 18d2cf827..79190df12 100644
--- a/transport.h
+++ b/transport.h
@@ -12,7 +12,6 @@ struct git_transport_options {
unsigned check_self_contained_and_connected : 1;
unsigned self_contained_and_connected : 1;
unsigned update_shallow : 1;
- unsigned push_cert : 1;
int depth;
const char *uploadpack;
const char *receivepack;