summaryrefslogtreecommitdiff
path: root/src/econf.erl
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2019-10-25 18:30:50 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2019-10-25 18:30:50 +0300
commitf981a2ef1700e01c622890503d644c18d8a4378e (patch)
tree04edf16105c96e89eab31e304d22b7f7f9dfdf81 /src/econf.erl
parentDon't lowercase first letter in reason string (diff)
Improve jwt_key validator
Diffstat (limited to '')
-rw-r--r--src/econf.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/econf.erl b/src/econf.erl
index 6b21b111..42bc0f6c 100644
--- a/src/econf.erl
+++ b/src/econf.erl
@@ -162,7 +162,7 @@ format_error({bad_cert, Why, Path}) ->
format_error({bad_jwt_key, Path}) ->
format("No valid JWT key found in file: ~ts", [Path]);
format_error({bad_jwt_key_set, Path}) ->
- format("JWT key contains JWK set in file: ~ts", [Path]);
+ format("JWK set contains multiple JWT keys in file: ~ts", [Path]);
format_error({bad_jid, Bad}) ->
format("Invalid XMPP address: ~ts", [Bad]);
format_error({bad_user, Bad}) ->