srt: Fix confusing typo in FIXME comment
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Sat, 6 Jul 2019 19:45:20 +0000 (15:45 -0400)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 9 Aug 2019 19:34:28 +0000 (20:34 +0100)
SRT does not support IPv6, but the comment said IPv4 which was the
opposite of the following code.

ext/srt/gstsrtobject.c

index 164ca89..f497a79 100644 (file)
@@ -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");