From dba0cdad5bcdfa09c2cf13b6413213cdf96635b5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 4 Dec 2024 18:24:04 +0100 Subject: [PATCH] security.idl: change ORGANISATION into ORGANIZATION Signed-off-by: Stefan Metzmacher Reviewed-by: Jennifer Sutton --- librpc/idl/security.idl | 4 ++-- python/samba/tests/krb5/test_ldap.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index d88cd92671a..b0a6a39011a 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -251,7 +251,7 @@ interface security const string SID_NT_RESTRICTED = "S-1-5-12"; const string SID_NT_TERMINAL_SERVER_USERS = "S-1-5-13"; const string SID_NT_REMOTE_INTERACTIVE = "S-1-5-14"; - const string SID_NT_THIS_ORGANISATION = "S-1-5-15"; + const string SID_NT_THIS_ORGANIZATION = "S-1-5-15"; const string SID_NT_IUSR = "S-1-5-17"; const string SID_NT_SYSTEM = "S-1-5-18"; const string SID_NT_LOCAL_SERVICE = "S-1-5-19"; @@ -259,7 +259,7 @@ interface security const string SID_NT_DIGEST_AUTHENTICATION = "S-1-5-64-21"; const string SID_NT_NTLM_AUTHENTICATION = "S-1-5-64-10"; const string SID_NT_SCHANNEL_AUTHENTICATION = "S-1-5-64-14"; - const string SID_NT_OTHER_ORGANISATION = "S-1-5-1000"; + const string SID_NT_OTHER_ORGANIZATION = "S-1-5-1000"; /* SECURITY_BUILTIN_DOMAIN_RID */ const string NAME_BUILTIN = "BUILTIN"; diff --git a/python/samba/tests/krb5/test_ldap.py b/python/samba/tests/krb5/test_ldap.py index eaf79e7fa01..259fb8c3ccd 100755 --- a/python/samba/tests/krb5/test_ldap.py +++ b/python/samba/tests/krb5/test_ldap.py @@ -133,7 +133,7 @@ class LdapTests(KDCBaseTest): self.assertEqual(security.SID_NT_NETWORK, str(token_sid)) if len(token_groups) >= 3: token_sid = ndr_unpack(security.dom_sid, token_groups[2]) - self.assertEqual(security.SID_NT_THIS_ORGANISATION, + self.assertEqual(security.SID_NT_THIS_ORGANIZATION, str(token_sid)) else: # Ensure that they match. -- 2.47.2