From 5ee0e1395d6e71eebe31768dd4663247dc0c183d Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Thu, 3 Apr 2008 22:15:16 +0000 Subject: use FF_NETERROR to make winsock happy, patch from prossATxvidDoTorg Originally committed as revision 12678 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rtsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 1431bc08d3..c2c6c7d405 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1094,7 +1094,7 @@ static int rtsp_read_header(AVFormatContext *s, goto fail; protocol_mask &= ~(1 << protocol); if (protocol_mask == 0 && err == 1) { - err = AVERROR(EPROTONOSUPPORT); + err = AVERROR(FF_NETERROR(EPROTONOSUPPORT)); goto fail; } } while (err); -- cgit v1.2.3