Commit 79de55fd authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/httpd.c: bug fix to re-use the httpd host (patch by Sau)

parent b82f3377
...@@ -1027,7 +1027,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host, ...@@ -1027,7 +1027,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host,
continue; continue;
/* Cannot re-use host if it uses TLS/SSL */ /* Cannot re-use host if it uses TLS/SSL */
if( &httpd->host[i]->p_tls != NULL ) if( httpd->host[i]->p_tls != NULL )
continue; continue;
#ifdef AF_INET6 #ifdef AF_INET6
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment