From 54ebd103c859333e96c1b609ada42de52029b18a Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Tue, 29 Aug 2023 12:15:19 +1200 Subject: [PATCH] wscript: Remove semicolons Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- wscript_configure_system_mitkrb5 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5 index a628ceb5746..dc65603488e 100644 --- a/wscript_configure_system_mitkrb5 +++ b/wscript_configure_system_mitkrb5 @@ -281,21 +281,21 @@ conf.CHECK_CODE(''' ''', '_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', headers='krb5.h', lib='krb5', - msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type definition is available"); + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type definition is available") conf.CHECK_CODE(''' krb5_enctype enctype; enctype = ENCTYPE_ARCFOUR_HMAC_MD5_56; ''', '_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56', headers='krb5.h', lib='krb5', - msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5_56 key type definition is available"); + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5_56 key type definition is available") conf.CHECK_CODE(''' krb5_keytype keytype; keytype = KEYTYPE_ARCFOUR_56; ''', '_HAVE_KEYTYPE_ARCFOUR_56', headers='krb5.h', lib='krb5', - msg="Checking whether the HAVE_KEYTYPE_ARCFOUR_56 key type definition is available"); + msg="Checking whether the HAVE_KEYTYPE_ARCFOUR_56 key type definition is available") if conf.CONFIG_SET('_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and conf.CONFIG_SET('_HAVE_KEYTYPE_ARCFOUR_56'): conf.DEFINE('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', '1') if conf.CONFIG_SET('_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5_56') and conf.CONFIG_SET('_HAVE_KEYTYPE_ARCFOUR_56'): @@ -307,14 +307,14 @@ conf.CHECK_CODE(''' ''', 'HAVE_ENCTYPE_ARCFOUR_HMAC', headers='krb5.h', lib='krb5', - msg="Checking whether the ENCTYPE_ARCFOUR_HMAC key type definition is available"); + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC key type definition is available") conf.CHECK_CODE(''' krb5_enctype enctype; enctype = ENCTYPE_ARCFOUR_HMAC_EXP; ''', 'HAVE_ENCTYPE_ARCFOUR_HMAC_EXP', headers='krb5.h', lib='krb5', - msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_EXP key type definition is available"); + msg="Checking whether the ENCTYPE_ARCFOUR_HMAC_EXP key type definition is available") conf.CHECK_CODE(''' krb5_context context; @@ -324,7 +324,7 @@ conf.CHECK_CODE(''' ''', 'HAVE_WRFILE_KEYTAB', headers='krb5.h', lib='krb5', execute=True, - msg="Checking whether the WRFILE -keytab is supported"); + msg="Checking whether the WRFILE -keytab is supported") # Check for KRB5_DEPRECATED handling conf.CHECK_CODE('''#define KRB5_DEPRECATED 1 #include ''', @@ -344,7 +344,7 @@ conf.CHECK_CODE(''' # Check for MIT KDC if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'): Logs.info("Looking for MIT KDC") - conf.DEFINE('SAMBA_USES_MITKDC', 1); + conf.DEFINE('SAMBA_USES_MITKDC', 1) kdc_path_list = [ '/usr/sbin', '/usr/lib/mit/sbin'] -- 2.11.4.GIT