diff options
Diffstat (limited to 'mitmproxy/cmdline.py')
-rw-r--r-- | mitmproxy/cmdline.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mitmproxy/cmdline.py b/mitmproxy/cmdline.py index 2184ce94..7b9f2b82 100644 --- a/mitmproxy/cmdline.py +++ b/mitmproxy/cmdline.py @@ -436,10 +436,10 @@ def proxy_ssl_options(parser): ) subgroup = group.add_mutually_exclusive_group() subgroup.add_argument( - "--add-server-certs-to-client-chain", default=False, - action="store_true", dest="add_server_certs_to_client_chain", - help="Add all the certificates of the server to the certificate chain " - "that will be served to the client, as extras." + "--add-upstream-certs-to-client-chain", default=False, + action="store_true", dest="add_upstream_certs_to_client_chain", + help="Add all certificates of the upstream server to the certificate chain " + "that will be served to the proxy client, as extras." ) subgroup.add_argument( "--verify-upstream-cert", default=False, |