Original commit message from CVS:
* plugins/elements/gstfilesrc.c:
Check for localhost in URI was backwards, fix it. Fixes unit test.
+2008-11-21 Michael Smith <msmith@songbirdnest.com>
+
+ * plugins/elements/gstfilesrc.c:
+ Check for localhost in URI was backwards, fix it. Fixes unit test.
+
2008-11-21 Wim Taymans <wim.taymans@collabora.co.uk>
* libs/gst/base/gstbasetransform.c: (gst_base_transform_init),
}
if (hostname) {
- if (!strcmp (hostname, "localhost")) {
+ if (strcmp (hostname, "localhost")) {
/* Only 'localhost' is permitted */
GST_WARNING_OBJECT (src, "Invalid hostname '%s' for filesrc", hostname);
g_free (hostname);