From: Nicolas Dufresne Date: Sat, 6 Jul 2019 19:45:20 +0000 (-0400) Subject: srt: Fix confusing typo in FIXME comment X-Git-Tag: 1.16.2~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7379529084fec3ce173e07ad4543ffcf14686b17;p=platform%2Fupstream%2Fgst-plugins-bad.git srt: Fix confusing typo in FIXME comment SRT does not support IPv6, but the comment said IPv4 which was the opposite of the following code. --- diff --git a/ext/srt/gstsrtobject.c b/ext/srt/gstsrtobject.c index 164ca89b3..f497a79eb 100644 --- a/ext/srt/gstsrtobject.c +++ b/ext/srt/gstsrtobject.c @@ -1000,7 +1000,7 @@ gst_srt_object_open_full (GstSRTObject * srtobject, goto out; } - /* FIXME: Unfortunately, SRT doesn't support IPv4 currently. */ + /* FIXME: Unfortunately, SRT doesn't support IPv6 currently. */ if (g_socket_address_get_family (socket_address) != G_SOCKET_FAMILY_IPV4) { g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_OPEN_READ, "SRT supports IPv4 only");