From 4c238c5b36e18b475f8abf8039fc8c8da4623a89 Mon Sep 17 00:00:00 2001 From: snnn Date: Wed, 17 Apr 2013 14:33:55 +0800 Subject: [PATCH] fix building on mac os x. "error: invalid suffix on literal; C++11 requires a space between literal and identifier" --- src/shrpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx.cc b/src/shrpx.cc index 2d185b9..2f78a02 100644 --- a/src/shrpx.cc +++ b/src/shrpx.cc @@ -324,7 +324,7 @@ void fill_default_config() mod_config()->daemon = false; mod_config()->verify_client = false; - mod_config()->server_name = "shrpx spdylay/"SPDYLAY_VERSION; + mod_config()->server_name = "shrpx spdylay/" SPDYLAY_VERSION; set_config_str(&mod_config()->host, "0.0.0.0"); mod_config()->port = 3000; mod_config()->private_key_file = 0;