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

Fix directory permission again

parent e7d4098c
......@@ -1067,7 +1067,7 @@ int config_CreateDir( vlc_object_t *p_this, const char *psz_dirname )
*psz_end = '\0';
if( config_CreateDir( p_this, psz_parent ) == 0 )
{
if( !utf8_mkdir( psz_dirname, 0755 ) )
if( !utf8_mkdir( psz_dirname, 0700 ) )
return 0;
}
}
......
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