summaryrefslogtreecommitdiffhomepage
path: root/modules.go
diff options
context:
space:
mode:
authorMatthew Holt <[email protected]>2019-07-18 09:52:43 -0600
committerMatthew Holt <[email protected]>2019-07-18 09:52:43 -0600
commit28df6cedfe8d347bd87931960c01e6606c14851e (patch)
tree5c525082b7f5c8de2036831855a32057634b4b2d /modules.go
parentdd6aa91d724ce90dc56839bcbd6d8de3ed44646d (diff)
downloadcaddy-28df6cedfe8d347bd87931960c01e6606c14851e.tar.gz
caddy-28df6cedfe8d347bd87931960c01e6606c14851e.zip
tls: Use IANA-standard cipher suite names
Diffstat (limited to 'modules.go')
-rw-r--r--modules.go2
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{}
}