]> granicus.if.org Git - git/commitdiff
transport: remove git_transport_options.push_cert
authorDave Borowitz <dborowitz@google.com>
Wed, 19 Aug 2015 15:26:43 +0000 (11:26 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 19 Aug 2015 19:41:54 +0000 (12:41 -0700)
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>
transport.c
transport.h

index eca9b8c817bd723532d7f92da8cfa9f8ee82bb43..39a1a66287bab38fb49c5610019bfe96ff7bf58d 100644 (file)
@@ -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;
 }
index 18d2cf8275e1f5f6ff3d18afde55d06ed7586af9..79190df12eed2af50181218136862e5c55b39784 100644 (file)
@@ -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;