This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new fcd6452 Remove hard coded filename in error message
fcd6452 is described below
commit fcd64520dda8cbf80d3523036e87bdb786949512
Author: Bryan Call <[email protected]>
AuthorDate: Mon Sep 16 16:30:45 2019 -0700
Remove hard coded filename in error message
(cherry picked from commit b564fc4fc648365f47b3d711bbd9349cb5dc2998)
---
iocore/net/YamlSNIConfig.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/iocore/net/YamlSNIConfig.cc b/iocore/net/YamlSNIConfig.cc
index 7f909ff..4a7cefa 100644
--- a/iocore/net/YamlSNIConfig.cc
+++ b/iocore/net/YamlSNIConfig.cc
@@ -43,7 +43,7 @@ YamlSNIConfig::loader(const char *cfgFilename)
}
if (!config["sni"]) {
- return ts::Errata::Message(1, 1, "malformed ssl_server_name.yaml file;
expected a toplevel 'sni' node");
+ return ts::Errata::Message(1, 1, "expected a toplevel 'sni' node");
}
config = config["sni"];