From 2fdc19e113a184012d6cc3a0d170de8f89887ef7 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 10 Mar 2019 13:34:57 -0700 Subject: [PATCH] modules/console: Reorder net listen cmd arguments. --- modules/console.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index ebdf0754f..67425adf9 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -4441,8 +4441,8 @@ console_cmd__net__listen(opt &out, const string_view &line) "name", "host", "port", - "certificate_pem_path", "private_key_pem_path", + "certificate_pem_path", "certificate_chain_path", "tmp_dh_path", "backlog", @@ -4453,8 +4453,8 @@ console_cmd__net__listen(opt &out, const string_view &line) { { "host", token.at("host", "0.0.0.0"_sv) }, { "port", token.at("port", 8448L) }, - { "certificate_pem_path", token.at("certificate_pem_path") }, { "private_key_pem_path", token.at("private_key_pem_path") }, + { "certificate_pem_path", token.at("certificate_pem_path") }, { "certificate_chain_path", token.at("certificate_chain_path", ""_sv) }, { "tmp_dh_path", token.at("tmp_dh_path", ""_sv) }, { "backlog", token.at("backlog", -1L) },