Commit 9b31c065 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fixed stupid bug (C) me, yesterday (variable name conflict)

parent ea0a6060
...@@ -931,7 +931,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host, ...@@ -931,7 +931,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host,
vlc_value_t val; vlc_value_t val;
char psz_port[6]; char psz_port[6];
struct addrinfo hints; struct addrinfo hints;
int res; int check;
memset( &hints, 0, sizeof( hints ) ); memset( &hints, 0, sizeof( hints ) );
...@@ -955,12 +955,12 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host, ...@@ -955,12 +955,12 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, char *psz_host,
snprintf( psz_port, sizeof( psz_port ), "%d", i_port ); snprintf( psz_port, sizeof( psz_port ), "%d", i_port );
psz_port[sizeof( psz_port ) - 1] = '\0'; psz_port[sizeof( psz_port ) - 1] = '\0';
res = getaddrinfo( psz_host, psz_port, &hints, &res ); check = getaddrinfo( psz_host, psz_port, &hints, &res );
if( res != 0 ) if( check != 0 )
{ {
#ifdef HAVE_GAI_STRERROR #ifdef HAVE_GAI_STRERROR
msg_Err( p_this, "cannot resolve %s:%d : %s", psz_host, i_port, msg_Err( p_this, "cannot resolve %s:%d : %s", psz_host, i_port,
gai_strerror( res ) ); gai_strerror( check ) );
#else #else
msg_Err( p_this, "cannot resolve %s:%d", psz_host, i_port ); msg_Err( p_this, "cannot resolve %s:%d", psz_host, i_port );
#endif #endif
......
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