From: Martin Storsjö Date: Fri, 8 Oct 2010 18:07:40 +0000 (+0000) Subject: Fix compilation on FreeBSD, use AF_UNSPEC instead of PF_UNSPEC X-Git-Tag: v0.7b1~1919 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1f676b8d455f095f2bd9b803894e0e89d072603;p=platform%2Fupstream%2Flibav.git Fix compilation on FreeBSD, use AF_UNSPEC instead of PF_UNSPEC Originally committed as revision 25416 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/sapenc.c b/libavformat/sapenc.c index 3b7ff2d..7c56ddb 100644 --- a/libavformat/sapenc.c +++ b/libavformat/sapenc.c @@ -106,7 +106,7 @@ static int sap_write_header(AVFormatContext *s) if (!announce_addr[0]) { struct addrinfo hints, *ai = NULL; memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; + hints.ai_family = AF_UNSPEC; if (getaddrinfo(host, NULL, &hints, &ai)) { av_log(s, AV_LOG_ERROR, "Unable to resolve %s\n", host); ret = AVERROR(EIO);