diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 17:53:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-06 17:53:01 +0200 |
commit | 89efaabc9949dcdc49126881beaa38355b8f9a44 (patch) | |
tree | 61bc2709d50bc13b2670323656d20bab79e6ee16 /libavformat/unix.c | |
parent | 287f7d0ae1267bf5e505d4173f5a4cb77f433c66 (diff) | |
parent | abe5268c3328bf0e8fcfb7dc6e231b8920177c3a (diff) | |
download | ffmpeg-89efaabc9949dcdc49126881beaa38355b8f9a44.tar.gz |
Merge commit 'abe5268c3328bf0e8fcfb7dc6e231b8920177c3a'
* commit 'abe5268c3328bf0e8fcfb7dc6e231b8920177c3a':
tcp: Use a different log message and level if there's more addresses to try
Conflicts:
libavformat/tcp.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/unix.c')
-rw-r--r-- | libavformat/unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/unix.c b/libavformat/unix.c index 33f6bb457d..70696c0c0c 100644 --- a/libavformat/unix.c +++ b/libavformat/unix.c @@ -83,7 +83,7 @@ static int unix_open(URLContext *h, const char *filename, int flags) } } else { ret = ff_listen_connect(fd, (struct sockaddr *)&s->addr, - sizeof(s->addr), s->timeout, h); + sizeof(s->addr), s->timeout, h, 0); if (ret < 0) goto fail; } |