Re: [Qemu-devel] [PATCH] configure: fix pam test warning

2019-04-04 Thread Philippe Mathieu-Daudé
On 4/4/19 11:17 AM, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > The pam test generates a warning on Fedora 29 with -O3 compilation > because the headers declare that the pam_conversation pointer to > pam_start must be non-NULL. Change it to use the same 0 initialised

Re: [Qemu-devel] [PATCH] configure: fix pam test warning

2019-04-04 Thread Daniel P . Berrangé
CC trivial On Thu, Apr 04, 2019 at 10:17:25AM +0100, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > The pam test generates a warning on Fedora 29 with -O3 compilation > because the headers declare that the pam_conversation pointer to > pam_start must be non-NULL. Chang

[Qemu-devel] [PATCH] configure: fix pam test warning

2019-04-04 Thread Dr. David Alan Gilbert (git)
From: "Dr. David Alan Gilbert" The pam test generates a warning on Fedora 29 with -O3 compilation because the headers declare that the pam_conversation pointer to pam_start must be non-NULL. Change it to use the same 0 initialised structure as we actually use in qauthz. Signed-off-by: Dr. David