From: John Stebbins Date: Thu, 27 Jun 2019 17:24:49 +0000 (-0700) Subject: Fix "hardening features" log message X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=011b19b4f0e80327b48c242c8c34ff5b3eb2f8b2;p=handbrake Fix "hardening features" log message Was getting logged when hardening was disabled --- diff --git a/libhb/hb.c b/libhb/hb.c index 4edf4835e..4356f8275 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -1664,7 +1664,7 @@ int hb_global_init_no_hardware() int hb_global_init() { /* Print hardening status on global init */ -#ifdef HB_PROJECT_HOST_HARDEN +#if HB_PROJECT_HOST_HARDEN hb_log( "Compile-time hardening features are enabled" ); #endif