From 4964f15ac49a24f6313857d133cf2caaa510d9bc Mon Sep 17 00:00:00 2001 From: Tomi Suviola Date: Fri, 17 Sep 2010 13:01:02 +0300 Subject: [PATCH] Remove bad commit --- libsignon-glib/signon-identity.c | 5 ----- libsignon-glib/signon-identity.h | 1 - tests/check_signon.c | 5 ----- 3 files changed, 11 deletions(-) diff --git a/libsignon-glib/signon-identity.c b/libsignon-glib/signon-identity.c index 08e9a77..d200dab 100644 --- a/libsignon-glib/signon-identity.c +++ b/libsignon-glib/signon-identity.c @@ -117,7 +117,6 @@ typedef struct _IdentityStoreCredentialsData gchar **realms; gchar **access_control_list; gint type; - gint ref_count; gpointer cb_data; } IdentityStoreCredentialsData; @@ -696,7 +695,6 @@ void signon_identity_store_credentials_with_info(SignonIdentity *self, (const gchar* const *)info->realms, (const gchar* const *)info->access_control_list, info->type, - info->ref_count, cb, user_data); } @@ -736,7 +734,6 @@ void signon_identity_store_credentials_with_args(SignonIdentity *self, const gchar* const *realms, const gchar* const *access_control_list, SignonIdentityType type, - gint ref_count, SignonIdentityStoreCredentialsCb cb, gpointer user_data) { @@ -764,7 +761,6 @@ void signon_identity_store_credentials_with_args(SignonIdentity *self, operation_data->realms = g_strdupv((gchar **)realms); operation_data->access_control_list = g_strdupv((gchar **)access_control_list); operation_data->type = (gint)type; - operation_data->ref_count = ref_count; operation_data->cb_data = cb_data; identity_check_remote_registration (self); @@ -818,7 +814,6 @@ identity_store_credentials_ready_cb (gpointer object, const GError *error, gpoin (const char **)operation_data->realms, (const char **)operation_data->access_control_list, operation_data->type, - operation_data->ref_count, identity_store_credentials_reply, cb_data); } diff --git a/libsignon-glib/signon-identity.h b/libsignon-glib/signon-identity.h index 040456c..860ddd7 100644 --- a/libsignon-glib/signon-identity.h +++ b/libsignon-glib/signon-identity.h @@ -115,7 +115,6 @@ void signon_identity_store_credentials_with_args(SignonIdentity *self, const gchar* const *realms, const gchar* const *access_control_list, SignonIdentityType type, - gint ref_count, SignonIdentityStoreCredentialsCb cb, gpointer user_data); diff --git a/tests/check_signon.c b/tests/check_signon.c index 98f310e..7f58174 100644 --- a/tests/check_signon.c +++ b/tests/check_signon.c @@ -544,7 +544,6 @@ new_identity() NULL, NULL, 0, - 1, &id, &error); @@ -664,7 +663,6 @@ START_TEST(test_store_credentials_identity) NULL, NULL, 0, - 1, store_credentials_identity_cb, &last_id); g_hash_table_destroy (methods); @@ -723,7 +721,6 @@ START_TEST(test_verify_secret_identity) NULL, NULL, 0, - 1, store_credentials_identity_cb, NULL); main_loop = g_main_loop_new (NULL, FALSE); @@ -796,7 +793,6 @@ START_TEST(test_remove_identity) NULL, NULL, 0, - 1, store_credentials_identity_cb, NULL); g_hash_table_destroy (methods); @@ -934,7 +930,6 @@ START_TEST(test_info_identity) NULL, NULL, 0, - 1, store_credentials_identity_cb, NULL); g_hash_table_destroy (methods); -- 2.7.4