diff options
author | Matthew Holt <[email protected]> | 2019-07-18 09:52:43 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-07-18 09:52:43 -0600 |
commit | 28df6cedfe8d347bd87931960c01e6606c14851e (patch) | |
tree | 5c525082b7f5c8de2036831855a32057634b4b2d /modules.go | |
parent | dd6aa91d724ce90dc56839bcbd6d8de3ed44646d (diff) | |
download | caddy-28df6cedfe8d347bd87931960c01e6606c14851e.tar.gz caddy-28df6cedfe8d347bd87931960c01e6606c14851e.zip |
tls: Use IANA-standard cipher suite names
Diffstat (limited to 'modules.go')
-rw-r--r-- | modules.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.go b/modules.go index 0ed0d0a6a..a257a69ac 100644 --- a/modules.go +++ b/modules.go @@ -86,7 +86,7 @@ func GetModules(scope string) []Module { // handle the special case of an empty scope, which // should match only the top-level modules - if len(scopeParts) == 1 && scopeParts[0] == "" { + if scope == "" { scopeParts = []string{} } |