]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
http server: fixed typo in the last commit
authorJaroslav Kysela <perex@perex.cz>
Wed, 24 May 2017 06:17:57 +0000 (08:17 +0200)
committerJaroslav Kysela <perex@perex.cz>
Wed, 24 May 2017 06:17:57 +0000 (08:17 +0200)
src/http.c

index 6319240add153181a6462d87f792f3c348bde160..f2665a7068cf6fe18e61ec61ce6d795d8cf9abea 100644 (file)
@@ -333,7 +333,7 @@ http_send_header(http_connection_t *hc, int rc, const char *content,
                 http_ver2str(hc->hc_version), rc, http_rc2str(rc));
 
   if (hc->hc_version != RTSP_VERSION_1_0){
-    htsbuf_qprintf(&hdrs, "Server: %s\r\n", config.http_server_name ?: "HTV/tvheadend");
+    htsbuf_qprintf(&hdrs, "Server: %s\r\n", config.http_server_name ?: "HTS/tvheadend");
     if (config.cors_origin && config.cors_origin[0]) {
       htsbuf_qprintf(&hdrs, "Access-Control-Allow-Origin: %s\r\n", config.cors_origin);
       htsbuf_append_str(&hdrs, "Access-Control-Allow-Methods: POST, GET, OPTIONS\r\n");