]> git.sesse.net Git - vlc/commitdiff
print a message about cvlc only when running with the default interface
authorRafaël Carré <funman@videolan.org>
Tue, 22 Jan 2008 15:22:43 +0000 (15:22 +0000)
committerRafaël Carré <funman@videolan.org>
Tue, 22 Jan 2008 15:22:43 +0000 (15:22 +0000)
src/libvlc-common.c

index 5b5675207d466444e9949dca46c01d5dfefca902..0051fa2f4e574c2765af26274cb5b8f26ab51f7f 100644 (file)
@@ -214,8 +214,6 @@ libvlc_int_t * libvlc_InternalCreate( void )
     /* Announce who we are - Do it only for first instance ? */
     msg_Dbg( p_libvlc, COPYRIGHT_MESSAGE );
     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 */
     vlc_mutex_init( p_libvlc, &p_libvlc->config_lock );
@@ -1060,6 +1058,14 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc,
     if( !p_libvlc )
         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
     if( libvlc_global.b_daemon && b_block && !psz_module )
     {