cia check
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 5 Aug 2003 10:38:54 +0000 (10:38 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 5 Aug 2003 10:38:54 +0000 (10:38 +0000)
Original commit message from CVS:
cia check

gst/gstutils.c

index 97be120..3a7d0b8 100644 (file)
@@ -209,7 +209,7 @@ gst_util_set_object_arg (GObject * object, const gchar * name, const gchar * val
        case G_TYPE_BOOLEAN:{
          gboolean i = FALSE;
 
-         if (!strncmp ("true", value, 4))
+         if (!g_strncasecmp ("true", value, 4))
            i = TRUE;
          g_object_set (G_OBJECT (object), name, i, NULL);
          break;