]> git.sesse.net Git - vlc/commitdiff
annoying typo :)
authorClément Stenac <zorglub@videolan.org>
Sat, 16 Sep 2006 12:45:08 +0000 (12:45 +0000)
committerClément Stenac <zorglub@videolan.org>
Sat, 16 Sep 2006 12:45:08 +0000 (12:45 +0000)
src/network/io.c

index b2feb632becdb4c03e65ff52d00ceab92f9b70d8..61f7f832b91a601e08d9b055641a311697200d82 100644 (file)
@@ -422,7 +422,7 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
             val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
         else
 #if defined(WIN32) || defined(UNDER_CE)
-            val = recv (fd, p_data, i_data, 0);
+            val = send (fd, p_data, i_data, 0);
 #else
             val = write (fd, p_data, i_data);
 #endif