network: Make a method private

This commit is contained in:
Robert Ancell 2019-11-08 09:47:39 +13:00 committed by Georges Basile Stavracas Neto
parent 0478abe46c
commit 71785b9109
2 changed files with 2 additions and 14 deletions

View file

@ -91,16 +91,6 @@ eap_method_fill_connection (EAPMethod *self,
return (*(self->fill_connection)) (self, connection, flags); return (*(self->fill_connection)) (self, connection, flags);
} }
void
eap_method_update_secrets (EAPMethod *self, NMConnection *connection)
{
g_return_if_fail (self != NULL);
g_return_if_fail (connection != NULL);
if (self->update_secrets)
self->update_secrets (self, connection);
}
void void
eap_method_phase2_update_secrets_helper (EAPMethod *self, eap_method_phase2_update_secrets_helper (EAPMethod *self,
NMConnection *connection, NMConnection *connection,
@ -121,8 +111,8 @@ eap_method_phase2_update_secrets_helper (EAPMethod *self,
g_autoptr(EAPMethod) eap = NULL; g_autoptr(EAPMethod) eap = NULL;
gtk_tree_model_get (model, &iter, column, &eap, -1); gtk_tree_model_get (model, &iter, column, &eap, -1);
if (eap) if (eap && eap->update_secrets)
eap_method_update_secrets (eap, connection); eap->update_secrets (self, connection);
} while (gtk_tree_model_iter_next (model, &iter)); } while (gtk_tree_model_iter_next (model, &iter));
} }
} }

View file

@ -65,8 +65,6 @@ void eap_method_fill_connection (EAPMethod *method,
NMConnection *connection, NMConnection *connection,
NMSettingSecretFlags flags); NMSettingSecretFlags flags);
void eap_method_update_secrets (EAPMethod *method, NMConnection *connection);
EAPMethod *eap_method_ref (EAPMethod *method); EAPMethod *eap_method_ref (EAPMethod *method);
void eap_method_unref (EAPMethod *method); void eap_method_unref (EAPMethod *method);