From 79de55fda055206bd21a764cd7ca656339469ac5 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Sun, 21 Nov 2004 19:00:29 +0000 Subject: [PATCH] * src/misc/httpd.c: bug fix to re-use the httpd host (patch by Sau) --- src/misc/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/httpd.c b/src/misc/httpd.c index 870000555e..ad29f62c7c 100644 --- a/src/misc/httpd.c +++ b/src/misc/httpd.c @@ -1027,7 +1027,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host, continue; /* Cannot re-use host if it uses TLS/SSL */ - if( &httpd->host[i]->p_tls != NULL ) + if( httpd->host[i]->p_tls != NULL ) continue; #ifdef AF_INET6 -- 2.39.5