From 9bd1519eb45e506840a633711f43090c9d833e33 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 7 Apr 2009 10:14:00 -0500 Subject: Simplifying error message --- libindicate/listener.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libindicate/listener.c b/libindicate/listener.c index e4fe68f..381a5f9 100644 --- a/libindicate/listener.c +++ b/libindicate/listener.c @@ -992,7 +992,7 @@ static void interest_cb (DBusGProxy *proxy, GError *error, gpointer userdata) { if (error != NULL) { - g_warning("Unable to configure interest on server %s because: %s", ((IndicateListenerServer *)userdata)->name, error->message); + g_warning("Unable to configure interest."); } return; -- cgit v1.2.3 From 912a2a1a79b9c5eaa3442a7945d8f9390dd2d522 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 7 Apr 2009 10:15:39 -0500 Subject: Hiding some debugging messages. --- libindicate/server.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libindicate/server.c b/libindicate/server.c index 520d47c..ed81d54 100644 --- a/libindicate/server.c +++ b/libindicate/server.c @@ -435,13 +435,13 @@ indicate_server_hide (IndicateServer * server) static void dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, const gchar * new, IndicateServer * server) { - g_debug("DBus Owner change (%s, %s, %s)", name, prev, new); + /* g_debug("DBus Owner change (%s, %s, %s)", name, prev, new); */ if (prev == NULL || prev[0] == '\0') { /* We only care about people leaving the bus */ return; } - g_debug("\tBeing removed, interesting"); + /* g_debug("\tBeing removed, interesting"); */ IndicateServerPrivate * priv = INDICATE_SERVER_GET_PRIVATE(server); IndicateServerInterestedFolk searchitem; @@ -449,7 +449,7 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c GList * entry = g_list_find_custom(priv->interestedfolks, &searchitem, indicate_server_interested_folks_equal); if (entry == NULL) { - g_debug("\tWe don't have it, not interesting"); + /* g_debug("\tWe don't have it, not interesting"); */ return; } @@ -464,16 +464,16 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c GList * listi = NULL; for (listi = priv->interestedfolks ; listi != NULL ; listi = listi->next) { IndicateServerInterestedFolk * folkpointer = (IndicateServerInterestedFolk *)listi->data; - g_debug("\tRebuild list from folk: %s", folkpointer->sender); + /* g_debug("\tRebuild list from folk: %s", folkpointer->sender); */ indicate_server_interested_folks_copy(folkpointer, priv->interests); } for (i = INDICATE_INTEREST_NONE; i < INDICATE_INTEREST_LAST; i++) { - g_debug("\tComparing interests. Interest: %d Folk: %d Everyone: %d", i, folk->interests[i], priv->interests[i]); + /* g_debug("\tComparing interests. Interest: %d Folk: %d Everyone: %d", i, folk->interests[i], priv->interests[i]); */ if (folk->interests[i] && !priv->interests[i]) { /* We can only remove interest here. Think about it for a moment and I think you'll be cool with it. */ - g_debug("\tOh, and it was interested in %d. Not anymore.", i); + /* g_debug("\tOh, and it was interested in %d. Not anymore.", i); */ g_signal_emit(G_OBJECT(server), signals[INTEREST_REMOVED], 0, i, TRUE); } } -- cgit v1.2.3 From 7f23e1134f1696700e815433eb65a22c73b8fc66 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 7 Apr 2009 11:43:02 -0500 Subject: I finally understood what seb128 told me about the version numbering. I feel so stupid for not understanding before :) --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3f8b19e..b86656d 100644 --- a/configure.ac +++ b/configure.ac @@ -22,8 +22,8 @@ AC_CONFIG_MACRO_DIR([m4]) # Libindicate versioning ########################### -LIBINDICATE_CURRENT=0 -LIBINDICATE_REVISION=1 +LIBINDICATE_CURRENT=1 +LIBINDICATE_REVISION=0 LIBINDICATE_AGE=0 AC_SUBST(LIBINDICATE_CURRENT) -- cgit v1.2.3