Commit 6884bea8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not read inexistant configuration parameter

parent 364f370e
......@@ -220,9 +220,7 @@ static int Activate( vlc_object_t *p_this )
psz_unix_path = config_GetPsz( p_intf, "rc-unix" );
if( psz_unix_path )
{
int i_socket, i_overwrite;
i_overwrite = config_GetInt( p_intf, "rc-overwrite" );
int i_socket;
#if !defined(AF_LOCAL) || defined(WIN32)
msg_Warn( p_intf, "your OS doesn't support filesystem sockets" );
......
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