Spelling fix s/informations/information/
authorMathieu Parent <math.parent@gmail.com>
Mon, 25 Mar 2019 14:02:45 +0000 (15:02 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 2 Apr 2019 01:12:10 +0000 (01:12 +0000)
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
14 files changed:
lib/talloc/man/talloc.3.xml
lib/talloc/talloc.h
lib/talloc/talloc_guide.txt
python/samba/netcmd/common.py
python/samba/netcmd/domain.py
python/samba/samdb.py
source4/dsdb/tests/python/dirsync.py
source4/dsdb/tests/python/password_lockout_base.py
source4/dsdb/tests/python/passwords.py
source4/dsdb/tests/python/rodc_rwdc.py
source4/dsdb/tests/python/sam.py
source4/selftest/provisions/alpha13/private/named.txt
source4/selftest/provisions/release-4-1-0rc3/private/named.txt
source4/setup/named.txt

index 6139fe738257c58d2a882f9b49ff51d6f38f6a83..c51061fce1feeb307ee8615f49929cb2d7715961 100644 (file)
             <para>
              you can talloc_free() the pointer itself if it has at maximum one
              parent. This behaviour has been changed since the release of version
-             2.0. Further informations in the description of "talloc_free".
+             2.0. Further information in the description of "talloc_free".
             </para>
           </listitem>
         </itemizedlist>
index 5240f1e8dda61e8cad569d409857eac2c2db6c8d..34fe772d2df21cd2e52d9b5870fe6d330b8c9146 100644 (file)
@@ -966,7 +966,7 @@ size_t talloc_reference_count(const void *ptr);
  *
  * - you can talloc_free() the pointer itself if it has at maximum one
  *   parent. This behaviour has been changed since the release of version
- *   2.0. Further informations in the description of "talloc_free".
+ *   2.0. Further information in the description of "talloc_free".
  *
  * For more control on which parent to remove, see talloc_unlink()
  * @param[in]  ctx      The additional parent.
@@ -1007,7 +1007,7 @@ void *_talloc_reference_loc(const void *context, const void *ptr, const char *lo
  *
  * You can just use talloc_free() instead of talloc_unlink() if there
  * is at maximum one parent. This behaviour has been changed since the
- * release of version 2.0. Further informations in the description of
+ * release of version 2.0. Further information in the description of
  * "talloc_free".
  *
  * @param[in]  context  The talloc parent to remove.
index aba285e72dfc1b080d891b1a68c8a33d28edff18..dedda6c0678029a2570fc42aa371c0e5257992bb 100644 (file)
@@ -189,7 +189,7 @@ ways:
 
   - you can talloc_free() the pointer itself if it has at maximum one
     parent. This behaviour has been changed since the release of version
-    2.0. Further informations in the description of "talloc_free".
+    2.0. Further information in the description of "talloc_free".
 
 For more control on which parent to remove, see talloc_unlink()
 
@@ -207,7 +207,7 @@ is NULL, then the function will make no modifications and return -1.
 
 You can just use talloc_free() instead of talloc_unlink() if there
 is at maximum one parent. This behaviour has been changed since the
-release of version 2.0. Further informations in the description of
+release of version 2.0. Further information in the description of
 "talloc_free".
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
index c68cbabf42e98d3eed019dc245dd6a96699b53a9..86f3e5161b154033c606841a55f0062e285ea2c7 100644 (file)
@@ -63,7 +63,7 @@ def netcmd_finddc(lp, creds, realm=None):
 
 
 def netcmd_get_domain_infos_via_cldap(lp, creds, address=None):
-    '''Return domain informations (CLDAP record) of the ldap-capable
+    '''Return domain information (CLDAP record) of the ldap-capable
        DC with the specified address'''
     net = Net(creds=creds, lp=lp)
     cldap_ret = net.finddc(address=address,
index 2aebb5f8166c09ba50fdb1384e583b4992c96ef5..851e7241d154b66b6855a160634d28b4e0966712 100644 (file)
@@ -1304,7 +1304,7 @@ class cmd_domain_passwordsettings_show(Command):
         except Exception as e:
             raise CommandError("Could not retrieve password properties!", e)
 
-        self.message("Password informations for domain '%s'" % domain_dn)
+        self.message("Password information for domain '%s'" % domain_dn)
         self.message("")
         if pwd_props & DOMAIN_PASSWORD_COMPLEX != 0:
             self.message("Password complexity: on")
index 308b5f96a7bd5444f5c1d6acc340721f015e9eb9..eda31cb90c3179bc6dea71a1c81ceef44cc26120 100644 (file)
@@ -201,7 +201,7 @@ pwdLastSet: 0
         group_dn = "CN=%s,%s,%s" % (groupname, (groupou or "CN=Users"), self.domain_dn())
 
         # The new user record. Note the reliance on the SAMLDB module which
-        # fills in the default informations
+        # fills in the default information
         ldbmessage = {"dn": group_dn,
                       "sAMAccountName": groupname,
                       "objectClass": "group"}
@@ -389,7 +389,7 @@ member: %s
         dnsdomain = ldb.Dn(self, self.domain_dn()).canonical_str().replace("/", "")
         user_principal_name = "%s@%s" % (username, dnsdomain)
         # The new user record. Note the reliance on the SAMLDB module which
-        # fills in the default informations
+        # fills in the default information
         ldbmessage = {"dn": user_dn,
                       "sAMAccountName": username,
                       "userPrincipalName": user_principal_name,
index c6a1df5ea43f4ae979744539397c278a05f0b7b4..8b46357c67023ddeaa2aa2b0697fe738715dd50e 100755 (executable)
@@ -315,14 +315,14 @@ class SimpleDirsyncTests(DirsyncBaseTests):
         delete_force(self.ldb_admin, ouname)
 
     def test_dirsync_with_controls(self):
-        """Check that dirsync return correct informations when dealing with the NC"""
+        """Check that dirsync return correct information when dealing with the NC"""
         res = self.ldb_admin.search(self.base_dn,
                                     expression="(distinguishedName=%s)" % str(self.base_dn),
                                     attrs=["name"],
                                     controls=["dirsync:1:0:10000", "extended_dn:1", "show_deleted:1"])
 
     def test_dirsync_basenc(self):
-        """Check that dirsync return correct informations when dealing with the NC"""
+        """Check that dirsync return correct information when dealing with the NC"""
         res = self.ldb_admin.search(self.base_dn,
                                     expression="(distinguishedName=%s)" % str(self.base_dn),
                                     attrs=["name"],
index 24b066c188d12897a83581fe5fc9e751f2dc2678..597633a6f73403dd64765e20232ce906f86cf21a 100644 (file)
@@ -401,7 +401,7 @@ lockoutThreshold: """ + str(lockoutThreshold) + """
         self.assertGreaterEqual(lastLogon, lastLogonTimestamp)
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         creds_lockout = self.insta_creds(creds)
 
@@ -695,7 +695,7 @@ lockoutThreshold: """ + str(lockoutThreshold) + """
         # time should increase.
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         username = creds.get_username()
         userdn = "cn=%s,cn=users,%s" % (username, self.base_dn)
index e1d0a9818977e7b6f9c23a24921cb9efcb102e0a..b5a91ddfbbdbb8435d0826b455f10fc3544387cc 100755 (executable)
@@ -140,7 +140,7 @@ add: userPassword
         self.ldb.enable_account("(sAMAccountName=testuser)")
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         creds2 = Credentials()
         creds2.set_username("testuser")
index c2c41634b8c5f117d516e5b634808ee824d472f6..988eeaf8094dba82ecf976aa69f8e7ab0dfdae3d 100644 (file)
@@ -343,7 +343,7 @@ class RodcRwdcCachedTests(password_lockout_base.BasePasswordTestCase):
         creds = self.lockout1ntlm_creds
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         creds_lockout = self.insta_creds(creds)
 
@@ -403,7 +403,7 @@ class RodcRwdcCachedTests(password_lockout_base.BasePasswordTestCase):
         userpass = creds.get_password()
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         creds_lockout = self.insta_creds(creds)
 
index 2d39286dd2ef5a2380314474665bfc1cce08587c..99d308648dfe4005e1fee9f471dbddb70bf13724 100755 (executable)
@@ -1766,7 +1766,7 @@ class SamTests(samba.tests.TestCase):
         self.assertNotEqual(int(res1[0]["pwdLastSet"][0]), 0)
 
         # Open a second LDB connection with the user credentials. Use the
-        # command line credentials for informations like the domain, the realm
+        # command line credentials for information like the domain, the realm
         # and the workstation.
         sasl_creds = Credentials()
         sasl_creds.set_username(username)
index c609bbab3ad118d54238e8342722e9617be7e76b..9641c48691a0ec585f9b605774da36126924d158 100644 (file)
@@ -1,4 +1,4 @@
-# Additional informations for DNS setup using BIND
+# Additional information for DNS setup using BIND
 
 # If you are running a capable version of BIND and you wish to support secure
 # GSS-TSIG updates, you must make the following configuration changes:
index 0c7e387d88c682c6898951eca9e82311cd9f92cf..616dd72813e874f3f2db986ada48242fc783751d 100644 (file)
@@ -1,4 +1,4 @@
-# Additional informations for DNS setup using BIND
+# Additional information for DNS setup using BIND
 
 # If you are running a capable version of BIND and you wish to support
 # secure GSS-TSIG updates, you must make the following configuration
index 511bc67c82b0f8495b3bad15860aa114f18baa2f..60c9e1478a4e043d38570bdf9e64b70b4ddcc31a 100644 (file)
@@ -1,4 +1,4 @@
-# Additional informations for DNS setup using BIND
+# Additional information for DNS setup using BIND
 
 # If you are running a capable version of BIND and you wish to support
 # secure GSS-TSIG updates, you must make the following configuration