mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 15:40:10 +01:00
l3cfg/trivial: rename parameter in nm_l3cfg_remove_config()
This commit is contained in:
parent
79d4b67681
commit
d6ab4d24cf
3 changed files with 5 additions and 4 deletions
|
|
@ -1963,6 +1963,7 @@ _dedup_multi_index_cmp(const NML3ConfigData *a, const NML3ConfigData *b, NMPObje
|
|||
NMDedupMultiIter iter_b;
|
||||
|
||||
NM_CMP_SELF(h_a, h_b);
|
||||
|
||||
NM_CMP_DIRECT(h_a->len, h_b->len);
|
||||
|
||||
nm_assert(h_a->len > 0);
|
||||
|
|
|
|||
|
|
@ -3235,11 +3235,11 @@ _l3cfg_remove_config(NML3Cfg * self,
|
|||
}
|
||||
|
||||
gboolean
|
||||
nm_l3cfg_remove_config(NML3Cfg *self, gconstpointer tag, const NML3ConfigData *ifcfg)
|
||||
nm_l3cfg_remove_config(NML3Cfg *self, gconstpointer tag, const NML3ConfigData *l3cd)
|
||||
{
|
||||
nm_assert(ifcfg);
|
||||
nm_assert(l3cd);
|
||||
|
||||
return _l3cfg_remove_config(self, tag, FALSE, ifcfg);
|
||||
return _l3cfg_remove_config(self, tag, FALSE, l3cd);
|
||||
}
|
||||
|
||||
gboolean
|
||||
|
|
|
|||
|
|
@ -328,7 +328,7 @@ gboolean nm_l3cfg_add_config(NML3Cfg * self,
|
|||
NML3CfgConfigFlags config_flags,
|
||||
NML3ConfigMergeFlags merge_flags);
|
||||
|
||||
gboolean nm_l3cfg_remove_config(NML3Cfg *self, gconstpointer tag, const NML3ConfigData *ifcfg);
|
||||
gboolean nm_l3cfg_remove_config(NML3Cfg *self, gconstpointer tag, const NML3ConfigData *l3cd);
|
||||
|
||||
gboolean nm_l3cfg_remove_config_all(NML3Cfg *self, gconstpointer tag);
|
||||
gboolean nm_l3cfg_remove_config_all_dirty(NML3Cfg *self, gconstpointer tag);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue