From 4c7c8a02e8be5326c6aeb03fb9d9600b01b3e1ea Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 25 Nov 2002 16:36:11 +0000 Subject: [PATCH] Test for url in correct variable. Original commit message from CVS: Test for url in correct variable. --- ext/gnomevfs/gstgnomevfssrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gnomevfs/gstgnomevfssrc.c b/ext/gnomevfs/gstgnomevfssrc.c index a48ae56a69..6033025ab2 100644 --- a/ext/gnomevfs/gstgnomevfssrc.c +++ b/ext/gnomevfs/gstgnomevfssrc.c @@ -748,7 +748,7 @@ gst_gnomevfssrc_received_headers_callback (gconstpointer in, g_free (src->iradio_genre); src->iradio_genre = g_strdup (value); g_object_notify (G_OBJECT (src), "iradio-genre"); - } else if (!strncmp (data, "url", 3)) { + } else if (!strncmp (key, "url", 3)) { if (src->iradio_url) g_free (src->iradio_url); src->iradio_url = g_strdup (value);