On Tue, 24 Nov 2015, Luca Barbato wrote:
--- libavformat/udp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)diff --git a/libavformat/udp.c b/libavformat/udp.c index 7fc3843..6af388b 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -192,7 +192,9 @@ static struct addrinfo *udp_resolve_host(URLContext *h, hints.ai_flags = flags; if ((error = getaddrinfo(node, service, &hints, &res))) { res = NULL; - av_log(h, AV_LOG_ERROR, "udp_resolve_host: %s\n", + av_log(h, AV_LOG_ERROR, "getaddrinfo(%s, %s): %s\n", + node ? node : "unknown", + service ? service : "unknown", gai_strerror(error)); } -- 2.6.1
Ok // Martin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
