On 20. 3. 2020 18:06, Rafael Fonseca wrote: > Replace libvirt's virKeyFile by glib's GKeyFile. > > Signed-off-by: Rafael Fonseca <r4f4...@gmail.com> > --- > src/util/virauthconfig.c | 25 +++++++++++-------------- > 1 file changed, 11 insertions(+), 14 deletions(-) > > diff --git a/src/util/virauthconfig.c b/src/util/virauthconfig.c > index fd846ddd4b..473b4c76d6 100644 > --- a/src/util/virauthconfig.c > +++ b/src/util/virauthconfig.c > @@ -29,7 +29,7 @@ > #include "viralloc.h" > > struct _virAuthConfig { > - virKeyFilePtr keyfile; > + GKeyFile *keyfile; > char *path; > }; >
There is one difference between virKeyFile format and GKeyFile. Whereas latter accepts comments only starting with '#', the former also accepts ';' (.ini style comments). However, I don't think anybody sane is using ';' to start a comment, therefore I'm inclined to merge this patch. If I do, whole src/util/virkeyfile.c module and tests/virkeyfiletest.c test can be removed too. Do you mind sending v2 where this would be the first patch and in the second you remove the module, test and correspodning symbols from src/libvirt_private.syms? Michal