diff options
-rw-r--r-- | transport.c | 3 | ||||
-rw-r--r-- | transport.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/transport.c b/transport.c index eca9b8c81..39a1a6628 100644 --- a/transport.c +++ b/transport.c @@ -478,9 +478,6 @@ static int set_git_option(struct git_transport_options *opts, die("transport: invalid depth option '%s'", value); } return 0; - } else if (!strcmp(name, TRANS_OPT_PUSH_CERT)) { - opts->push_cert = !!value; - return 0; } return 1; } 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; |