Commit 814ca514 authored by Rafaël Carré's avatar Rafaël Carré

print a message about cvlc only when running with the default interface

parent b92ff12b
...@@ -214,8 +214,6 @@ libvlc_int_t * libvlc_InternalCreate( void ) ...@@ -214,8 +214,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
/* Announce who we are - Do it only for first instance ? */ /* Announce who we are - Do it only for first instance ? */
msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE ); msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE ); msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
if( strcmp( p_libvlc->psz_object_name, "cvlc" ) ) /* Not running with cvlc */
msg_Info( p_libvlc, "Running vlc with the default interface. Use 'cvlc' to use vlc without interface.");
/* Initialize mutexes */ /* Initialize mutexes */
vlc_mutex_init( p_libvlc, &p_libvlc->config_lock ); vlc_mutex_init( p_libvlc, &p_libvlc->config_lock );
...@@ -1060,6 +1058,14 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, ...@@ -1060,6 +1058,14 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
if( !p_libvlc ) if( !p_libvlc )
return VLC_EGENERIC; return VLC_EGENERIC;
if( !psz_module ) /* requesting the default interface */
{
char *psz_interface = config_GetPsz( p_libvlc, "intf" );
if( !psz_interface || !*psz_interface ) /* "intf" has not been set */
msg_Info( p_libvlc, _("Running vlc with the default interface. Use 'cvlc' to use vlc without interface.") );
free( psz_interface );
}
#ifndef WIN32 #ifndef WIN32
if( libvlc_global.b_daemon && b_block && !psz_module ) if( libvlc_global.b_daemon && b_block && !psz_module )
{ {
......
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