aboutsummaryrefslogtreecommitdiff
path: root/src/im-menu-item.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-07 13:18:14 -0500
committerTed Gould <ted@canonical.com>2009-04-07 13:18:14 -0500
commit81194efc2e8b54fe3ab25604981ac03f4ad0bb4d (patch)
tree44fad6359c23ca3d185cccc8b0a8f5e968ff3db9 /src/im-menu-item.c
parent33aaf28aafac744cde4375df44db4bd1c9a02696 (diff)
downloadayatana-indicator-messages-81194efc2e8b54fe3ab25604981ac03f4ad0bb4d.tar.gz
ayatana-indicator-messages-81194efc2e8b54fe3ab25604981ac03f4ad0bb4d.tar.bz2
ayatana-indicator-messages-81194efc2e8b54fe3ab25604981ac03f4ad0bb4d.zip
Should have been using g_strcmp0 all along. No reason not to use the safer one.
Diffstat (limited to 'src/im-menu-item.c')
-rw-r--r--src/im-menu-item.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/im-menu-item.c b/src/im-menu-item.c
index 7a139fd..737c609 100644
--- a/src/im-menu-item.c
+++ b/src/im-menu-item.c
@@ -265,7 +265,7 @@ time_cb (IndicateListener * listener, IndicateListenerServer * server, IndicateL
return;
}
- if (property == NULL || strcmp(property, "time")) {
+ if (property == NULL || g_strcmp0(property, "time")) {
g_warning("Time callback called without being sent the time.");
return;
}
@@ -295,7 +295,7 @@ sender_cb (IndicateListener * listener, IndicateListenerServer * server, Indicat
return;
}
- if (property == NULL || strcmp(property, "sender")) {
+ if (property == NULL || g_strcmp0(property, "sender")) {
g_warning("Sender callback called without being sent the sender. We got '%s' with value '%s'.", property, propertydata);
return;
}
@@ -326,13 +326,13 @@ indicator_modified_cb (IndicateListener * listener, IndicateListenerServer * ser
/* Not meant for us */
if (INDICATE_LISTENER_INDICATOR_ID(indicator) != INDICATE_LISTENER_INDICATOR_ID(priv->indicator)) return;
- if (strcmp(INDICATE_LISTENER_SERVER_DBUS_NAME(server), INDICATE_LISTENER_SERVER_DBUS_NAME(priv->server))) return;
+ if (g_strcmp0(INDICATE_LISTENER_SERVER_DBUS_NAME(server), INDICATE_LISTENER_SERVER_DBUS_NAME(priv->server))) return;
- if (!strcmp(property, "sender")) {
+ if (!g_strcmp0(property, "sender")) {
indicate_listener_get_property(listener, server, indicator, "sender", sender_cb, self);
- } else if (!strcmp(property, "time")) {
+ } else if (!g_strcmp0(property, "time")) {
indicate_listener_get_property_time(listener, server, indicator, "time", time_cb, self);
- } else if (!strcmp(property, "icon")) {
+ } else if (!g_strcmp0(property, "icon")) {
indicate_listener_get_property_icon(listener, server, indicator, "icon", icon_cb, self);
}