From: Andreas Schneider Date: Tue, 20 Nov 2018 14:57:51 +0000 (+0100) Subject: s3:utils: Use #ifdef instead of #if for config.h definitions X-Git-Tag: tdb-1.3.17~549 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fce92606b356883ed9fbea6948d426345ede79cf;p=thirdparty%2Fsamba.git s3:utils: Use #ifdef instead of #if for config.h definitions Signed-off-by: Andreas Schneider Reviewed-by: Gary Lockyer --- diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index b8014ec1034..629f5e5dd6b 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -49,7 +49,7 @@ #include "lib/util/base64.h" #include "cmdline_contexts.h" -#if HAVE_KRB5 +#ifdef HAVE_KRB5 #include "auth/kerberos/pac_utils.h" #endif diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index 597bab6450d..866217c248b 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -37,15 +37,15 @@ #include "serverid.h" #include "cmdline_contexts.h" -#if HAVE_LIBUNWIND_H +#ifdef HAVE_LIBUNWIND_H #include #endif -#if HAVE_LIBUNWIND_PTRACE_H +#ifdef HAVE_LIBUNWIND_PTRACE_H #include #endif -#if HAVE_SYS_PTRACE_H +#ifdef HAVE_SYS_PTRACE_H #include #endif