ext/cairo/gsttextoverlay.c: Change strcasecmp() to g_strcasecmp(). Fixes #497292.
authorDavid Schleef <ds@schleef.org>
Fri, 16 Nov 2007 05:52:55 +0000 (05:52 +0000)
committerDavid Schleef <ds@schleef.org>
Fri, 16 Nov 2007 05:52:55 +0000 (05:52 +0000)
Original commit message from CVS:
* ext/cairo/gsttextoverlay.c:
Change strcasecmp() to g_strcasecmp().  Fixes #497292.

ChangeLog
ext/cairo/gsttextoverlay.c

index c28320b..e1d6c34 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-15  David Schleef  <ds@schleef.org>
+
+       * ext/cairo/gsttextoverlay.c:
+         Change strcasecmp() to g_strcasecmp().  Fixes #497292.
+
 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
 
        Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
index bf904ef..69422a8 100644 (file)
@@ -22,7 +22,6 @@
 #include <config.h>
 #endif
 #include <string.h>
-#include <strings.h>
 #include <gst/video/video.h>
 #include "gsttextoverlay.h"
 
@@ -340,11 +339,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
     case ARG_VALIGN:{
       const gchar *s = g_value_get_string (value);
 
-      if (strcasecmp (s, "baseline") == 0)
+      if (g_strcasecmp (s, "baseline") == 0)
         overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BASELINE;
-      else if (strcasecmp (s, "bottom") == 0)
+      else if (g_strcasecmp (s, "bottom") == 0)
         overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BOTTOM;
-      else if (strcasecmp (s, "top") == 0)
+      else if (g_strcasecmp (s, "top") == 0)
         overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_TOP;
       else
         g_warning ("Invalid 'valign' property value: %s", s);
@@ -353,11 +352,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id,
     case ARG_HALIGN:{
       const gchar *s = g_value_get_string (value);
 
-      if (strcasecmp (s, "left") == 0)
+      if (g_strcasecmp (s, "left") == 0)
         overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_LEFT;
-      else if (strcasecmp (s, "right") == 0)
+      else if (g_strcasecmp (s, "right") == 0)
         overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_RIGHT;
-      else if (strcasecmp (s, "center") == 0)
+      else if (g_strcasecmp (s, "center") == 0)
         overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_CENTER;
       else
         g_warning ("Invalid 'halign' property value: %s", s);