[Mplayer-cvslog] CVS: main/libvo vo_bl.c,1.3,1.4
Alex Beregszaszi
alex at mplayerhq.hu
Thu May 29 21:37:01 CEST 2003
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux asf_mmst_streaming.c,1.8,1.9 asf_streaming.c,1.37,1.38 netstream.h,1.2,1.3 network.c,1.81,1.82 pnm.c,1.4,1.5
- Next message: [Mplayer-cvslog] CVS: main/help help_mp-hu.h,1.58,1.59
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var/tmp.root/cvs-serv5039
Modified Files:
vo_bl.c
Log Message:
Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD standard). Patch by FloDt <flodt8 at yahoo.de>
Index: vo_bl.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_bl.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vo_bl.c 12 Nov 2002 20:37:36 -0000 1.3
+++ vo_bl.c 29 May 2003 19:36:58 -0000 1.4
@@ -175,7 +175,7 @@
}
static void udp_send(bl_host_t *h) {
- if (write(h->fd, bl_packet, bl_size) != bl_size)
+ if (send(h->fd, bl_packet, bl_size, 0) != bl_size)
mp_msg(MSGT_VO, MSGL_ERR, "unable to send to %s\n", h->name);
}
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux asf_mmst_streaming.c,1.8,1.9 asf_streaming.c,1.37,1.38 netstream.h,1.2,1.3 network.c,1.81,1.82 pnm.c,1.4,1.5
- Next message: [Mplayer-cvslog] CVS: main/help help_mp-hu.h,1.58,1.59
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list