]> git.sesse.net Git - vlc/blobdiff - modules/control/telnet.c
Use vlc_object_lock and vlc_object_unlock
[vlc] / modules / control / telnet.c
index b79302d1dbe4b0b1b154573eef6d47b868b245f2..e7bb2e19c9d60fd35d1c61b92dbf5e718f3bfbda 100644 (file)
@@ -30,7 +30,7 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
 #include <vlc_input.h>
@@ -99,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 );