Fix KVM issue on DISABLE_XSS_PREVENTION

Fix KVM failed to load images issue introduced by incorrect condition
updated by commit 0260d9d6b252d5fef81a51d4797e27a6893827f4.

Tested:
KVM loaded images successfully

Signed-off-by: Arun P. Mohanan <arun.p.m@linux.intel.com>
Change-Id: Ib753ed1d56ce2e0a9228ca52e36ffab298d21cff
diff --git a/include/security_headers.hpp b/include/security_headers.hpp
index e3c472e..e8cd37a 100644
--- a/include/security_headers.hpp
+++ b/include/security_headers.hpp
@@ -23,7 +23,7 @@
                                       "mode=block");
     res.addHeader("X-Content-Type-Options", "nosniff");
 
-    if (bmcwebInsecureDisableXssPrevention)
+    if (!bmcwebInsecureDisableXssPrevention)
     {
         res.addHeader("Content-Security-Policy", "default-src 'none'; "
                                                  "img-src 'self' data:; "