]> git.sesse.net Git - vlc/blobdiff - modules/access/tcp.c
Fix misleading comment
[vlc] / modules / access / tcp.c
index 1ae0350cbb2d2bc23024ae9cd18a78dd58ad108b..6b3a0a7111345dee316b82ad97f8c1eb6d46736b 100644 (file)
@@ -29,7 +29,8 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
+#include <vlc_plugin.h>
 #include <vlc_access.h>
 
 #include <vlc_network.h>
@@ -46,8 +47,8 @@ static int  Open ( vlc_object_t * );
 static void Close( vlc_object_t * );
 
 vlc_module_begin();
-    set_shortname( _("TCP") );
-    set_description( _("TCP input") );
+    set_shortname( N_("TCP") );
+    set_description( N_("TCP input") );
     set_category( CAT_INPUT );
     set_subcategory( SUBCAT_INPUT_ACCESS );
 
@@ -134,7 +135,7 @@ static void Close( vlc_object_t *p_this )
 }
 
 /*****************************************************************************
- * Read: read on a file descriptor, checking b_die periodically
+ * Read: read on a file descriptor
  *****************************************************************************/
 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
 {