Re: [PATCH] util: authconfig: use g_key_file_*

2020-03-23 Thread Daniel P . Berrangé
On Mon, Mar 23, 2020 at 01:54:07PM +0100, Michal Prívozník wrote: > On 20. 3. 2020 18:06, Rafael Fonseca wrote: > > Replace libvirt's virKeyFile by glib's GKeyFile. > > > > Signed-off-by: Rafael Fonseca > > --- > > src/util/virauthconfig.c | 25 +++-- > > 1 file changed, 11

Re: [PATCH] util: authconfig: use g_key_file_*

2020-03-23 Thread Rafael Fonseca
On Mon, Mar 23, 2020 at 1:54 PM Michal Prívozník wrote: > > 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

Re: [PATCH] util: authconfig: use g_key_file_*

2020-03-23 Thread Michal Prívozník
On 20. 3. 2020 18:06, Rafael Fonseca wrote: > Replace libvirt's virKeyFile by glib's GKeyFile. > > Signed-off-by: Rafael Fonseca > --- > src/util/virauthconfig.c | 25 +++-- > 1 file changed, 11 insertions(+), 14 deletions(-) > > diff --git a/src/util/virauthconfig.c

[PATCH] util: authconfig: use g_key_file_*

2020-03-20 Thread Rafael Fonseca
Replace libvirt's virKeyFile by glib's GKeyFile. Signed-off-by: Rafael Fonseca --- 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 ---