]> git.sesse.net Git - vlc/blobdiff - modules/control/telnet.c
Use vlc_object_lock and vlc_object_unlock
[vlc] / modules / control / telnet.c
index a66d39b820b64c4dff3e8d5ad935725728b1a7dd..e7bb2e19c9d60fd35d1c61b92dbf5e718f3bfbda 100644 (file)
@@ -30,7 +30,8 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
+#include <vlc_plugin.h>
 #include <vlc_interface.h>
 #include <vlc_input.h>
 
@@ -98,7 +99,7 @@ vlc_module_begin();
                  TELNETPORT_LONGTEXT, true );
     add_password( "telnet-password", TELNETPWD_DEFAULT, NULL, TELNETPWD_TEXT,
                 TELNETPWD_LONGTEXT, true );
-    set_description( _("VLM remote control interface") );
+    set_description( N_("VLM remote control interface") );
     add_category_hint( "VLM", NULL, false );
     set_capability( "interface", 0 );
     set_callbacks( Open , Close );