diff options
-rw-r--r-- | src/couchdb/couch_httpd.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl index d0f3c756..49b8e9bc 100644 --- a/src/couchdb/couch_httpd.erl +++ b/src/couchdb/couch_httpd.erl @@ -1013,5 +1013,6 @@ negotiate_content_type(Req) -> end. server_header() -> + OTPVersion = "R" ++ integer_to_list(erlang:system_info(compat_rel)) ++ "B", [{"Server", "CouchDB/" ++ couch_server:get_version() ++ - " (Erlang OTP/R" ++ erlang:system_info(compat_rel) ++ "B)"}]. + " (Erlang OTP/" ++ OTPVersion ++ ")"}]. |