summaryrefslogtreecommitdiff
path: root/libavformat/unix.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-08-03 15:00:11 +0200
committerLuca Barbato <lu_zero@gentoo.org>2013-08-05 16:13:36 +0200
commitbb9378251a167ef0116f263912e57f715c1e02ac (patch)
tree5accf9f37eb3d899a816a1c918877a5305b4f4cb /libavformat/unix.c
parent605387582bd35920b83a26dabbe1c0601f425621 (diff)
network: Use SOCK_CLOEXEC when available
Diffstat (limited to 'libavformat/unix.c')
-rw-r--r--libavformat/unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/unix.c b/libavformat/unix.c
index 167efabf41..09f3d68127 100644
--- a/libavformat/unix.c
+++ b/libavformat/unix.c
@@ -71,7 +71,7 @@ static int unix_open(URLContext *h, const char *filename, int flags)
s->addr.sun_family = AF_UNIX;
av_strlcpy(s->addr.sun_path, filename, sizeof(s->addr.sun_path));
- if ((fd = socket(AF_UNIX, s->type, 0)) < 0)
+ if ((fd = ff_socket(AF_UNIX, s->type, 0)) < 0)
return ff_neterrno();
if (s->listen) {