From 71205886758fcfc5e2c907b1338f279464b173f6 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 18 Apr 2009 09:05:09 +0200 Subject: gstpythonplugin: Use strcmp for old glib. Fixes #579383 --- plugin/gstpythonplugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gstpythonplugin.c b/plugin/gstpythonplugin.c index a090e40..08ba11a 100644 --- a/plugin/gstpythonplugin.c +++ b/plugin/gstpythonplugin.c @@ -278,7 +278,7 @@ pygst_require (gchar * version) /* We don't want the registry to be loaded when we import gst */ if ((regupd = g_getenv ("GST_REGISTRY_UPDATE")) - && (!g_strcmp0 (regupd, "no"))) + && (!strcmp (regupd, "no"))) doupdate = FALSE; g_setenv ("GST_REGISTRY_UPDATE", "no", TRUE); -- cgit v1.2.3