Commit 3aefa744 authored by Juan Quintela's avatar Juan Quintela Committed by Anthony Liguori
Browse files

fix VNC SASL detection



This test was missing the change to != no.

Signed-off-by: default avatarJuan Quintela <quintela@redhat.com>
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent ae20c622
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1000,7 +1000,7 @@ fi

##########################################
# VNC SASL detection
if test "$vnc_sasl" = "yes" ; then
if test "$vnc_sasl" != "no" ; then
  cat > $TMPC <<EOF
#include <sasl/sasl.h>
#include <stdio.h>