Remove bad commit 0.15
authorTomi Suviola <tomi.suviola@nokia.com>
Fri, 17 Sep 2010 10:01:02 +0000 (13:01 +0300)
committerTomi Suviola <tomi.suviola@nokia.com>
Fri, 17 Sep 2010 10:02:04 +0000 (13:02 +0300)
libsignon-glib/signon-identity.c
libsignon-glib/signon-identity.h
tests/check_signon.c

index 08e9a77e9b89b2c103e6d62b72fb916dc3f48a72..d200dab951107afeeb47ef307938874171414374 100644 (file)
@@ -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);
     }
index 040456c851187dc40c2096c56ec1a6ab02530694..860ddd73f39c68feb8637027eaaae61b2deb0a81 100644 (file)
@@ -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);
 
index 98f310e203f949c08ae727a93f9b05d856599a3f..7f581741fe0e5e3a4e6439af3a2ddca1968c4f3f 100644 (file)
@@ -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);