Commit b9dc215e authored by Rémi Duraffort's avatar Rémi Duraffort

Fix variables types.

parent fec5ea6a
...@@ -261,7 +261,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -261,7 +261,7 @@ static int Open( vlc_object_t *p_this )
free( psz_src ); free( psz_src );
if( var_InheritInteger( p_intf, "http-album-art" ) ) if( var_InheritBool( p_intf, "http-album-art" ) )
{ {
/* FIXME: we're leaking h */ /* FIXME: we're leaking h */
httpd_handler_sys_t *h = malloc( sizeof( httpd_handler_sys_t ) ); httpd_handler_sys_t *h = malloc( sizeof( httpd_handler_sys_t ) );
......
...@@ -240,7 +240,7 @@ static void FindLength( demux_t *p_demux ) ...@@ -240,7 +240,7 @@ static void FindLength( demux_t *p_demux )
int64_t i_current_pos = -1, i_size = 0, i_end = 0; int64_t i_current_pos = -1, i_size = 0, i_end = 0;
int i; int i;
if( !var_CreateGetInteger( p_demux, "ps-trust-timestamps" ) ) if( !var_CreateGetBool( p_demux, "ps-trust-timestamps" ) )
return; return;
if( p_sys->i_length == -1 ) /* First time */ if( p_sys->i_length == -1 ) /* First time */
......
...@@ -319,11 +319,11 @@ static int Open( vlc_object_t *p_this ) ...@@ -319,11 +319,11 @@ static int Open( vlc_object_t *p_this )
p_sys->pi_fd = NULL; p_sys->pi_fd = NULL;
p_sys->i_fd = 0; p_sys->i_fd = 0;
p_sys->b_strict = var_CreateGetInteger( p_sd, "sap-strict"); p_sys->b_strict = var_CreateGetBool( p_sd, "sap-strict");
p_sys->b_parse = var_CreateGetInteger( p_sd, "sap-parse" ); p_sys->b_parse = var_CreateGetBool( p_sd, "sap-parse" );
#if 0 #if 0
if( var_CreateGetInteger( p_sd, "sap-cache" ) ) if( var_CreateGetBool( p_sd, "sap-cache" ) )
{ {
CacheLoad( p_sd ); CacheLoad( p_sd );
} }
...@@ -353,7 +353,7 @@ static int OpenDemux( vlc_object_t *p_this ) ...@@ -353,7 +353,7 @@ static int OpenDemux( vlc_object_t *p_this )
int errval = VLC_EGENERIC; int errval = VLC_EGENERIC;
size_t i_len; size_t i_len;
if( !var_CreateGetInteger( p_demux, "sap-parse" ) ) if( !var_CreateGetBool( p_demux, "sap-parse" ) )
{ {
/* We want livedotcom module to parse this SDP file */ /* We want livedotcom module to parse this SDP file */
return VLC_EGENERIC; return VLC_EGENERIC;
...@@ -495,14 +495,14 @@ static void *Run( void *data ) ...@@ -495,14 +495,14 @@ static void *Run( void *data )
* Winsock 1.1 from Windows 95, if not Windows 3.1. * Winsock 1.1 from Windows 95, if not Windows 3.1.
* Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation, * Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation,
* we have to open sockets in Run() rather than Open(). */ * we have to open sockets in Run() rather than Open(). */
if( var_CreateGetInteger( p_sd, "sap-ipv4" ) ) if( var_CreateGetBool( p_sd, "sap-ipv4" ) )
{ {
InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT ); InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT ); InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT ); InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT ); InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
} }
if( var_CreateGetInteger( p_sd, "sap-ipv6" ) ) if( var_CreateGetBool( p_sd, "sap-ipv6" ) )
{ {
char psz_address[NI_MAXNUMERICHOST] = "ff02::2:7ffe%"; char psz_address[NI_MAXNUMERICHOST] = "ff02::2:7ffe%";
......
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