From e048deb64cfb67f64961fa9a98cb1a31664f05b1 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 12 Jan 2015 22:35:45 +0900 Subject: [PATCH] nghttpx: Fix error message --- src/shrpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx.cc b/src/shrpx.cc index 81b74fcc..304e08cf 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -1751,7 +1751,7 @@ int main(int argc, char **argv) { if (ssl::cert_lookup_tree_add_cert_from_file( get_config()->cert_tree, get_config()->default_ssl_ctx, get_config()->cert_file.get()) == -1) { - LOG(FATAL) << "Failed to parse command-line argument."; + LOG(FATAL) << "Failed to add server certificate to the lookup tree."; exit(EXIT_FAILURE); } }