On 12/12/2017 06:36 AM, Marc Hartmayer wrote: > Additionally, use a whitelist model to decide whether authentication > is needed or not. > > Signed-off-by: Marc Hartmayer <[email protected]> > Reviewed-by: Boris Fiuczynski <[email protected]> > Reviewed-by: Bjoern Walk <[email protected]> > Reviewed-by: Stefan Zimmermann <[email protected]> > --- > src/rpc/virnetserverclient.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >
or in one ugly C line ;-) need = !(client->auth == VIR_NET_SERVER_SERVICE_AUTH_NONE); or need = client->auth != VIR_NET_SERVER_SERVICE_AUTH_NONE; Reviewed-by: John Ferlan <[email protected]> John -- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
