Correct "specifiy" typos.
authorChris Lamb <chris@chris-lamb.co.uk>
Fri, 17 Feb 2017 19:59:19 +0000 (08:59 +1300)
committerGarming Sam <garming@samba.org>
Wed, 22 Feb 2017 07:26:23 +0000 (08:26 +0100)
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
python/samba/netcmd/user.py
source4/auth/kerberos/kerberos-notes.txt
source4/auth/kerberos/kerberos-porting-to-mit-notes.txt
source4/dsdb/samdb/ldb_modules/password_hash.c
third_party/dnspython/dns/rdata.py

index f007ee589888bf5cfe0f80837ef6bd3512d66a60..fbb98a13d87b677e4526e69b53c0e78c75ffa4fa 100644 (file)
@@ -285,11 +285,11 @@ Example5 shows how to create an RFC2307/NIS domain enabled user account. If
 
         if smartcard_required:
             if password is not None and password is not '':
-                raise CommandError('It is not allowed to specifiy '
+                raise CommandError('It is not allowed to specify '
                                    '--newpassword '
                                    'together with --smartcard-required.')
             if must_change_at_next_login:
-                raise CommandError('It is not allowed to specifiy '
+                raise CommandError('It is not allowed to specify '
                                    '--must-change-at-next-login '
                                    'together with --smartcard-required.')
 
@@ -757,15 +757,15 @@ Example3 shows how an administrator would reset TestUser3 user's password to pas
 
         if smartcard_required:
             if password is not None and password is not '':
-                raise CommandError('It is not allowed to specifiy '
+                raise CommandError('It is not allowed to specify '
                                    '--newpassword '
                                    'together with --smartcard-required.')
             if must_change_at_next_login:
-                raise CommandError('It is not allowed to specifiy '
+                raise CommandError('It is not allowed to specify '
                                    '--must-change-at-next-login '
                                    'together with --smartcard-required.')
             if clear_smartcard_required:
-                raise CommandError('It is not allowed to specifiy '
+                raise CommandError('It is not allowed to specify '
                                    '--clear-smartcard-required '
                                    'together with --smartcard-required.')
 
index 62615327294ddeef72b33213d6eb2c715827bad0..1981328bcf695b5c6a924606854a2e4a42d60b25 100644 (file)
@@ -576,7 +576,7 @@ this doesn't really affect the port to mit-krb.
 Because the number of U/L case combinations got 'too hard' to put into a keytab in the
 traditional way (with the client to specify the name), we either
 pre-compute the keys into a traditional keytab or make an in-MEMORY
-keytab at run time.  In both cases we specifiy the principal name to
+keytab at run time.  In both cases we specify the principal name to
 GSSAPI, which avoids the need to store duplicate principals.
 
 We use a 'private' keytab in our private dir, referenced from the
index bad17a70684954fe59404ac1601b80eb166c5210..329558e9f7af5136bb567ac48de9bc6f74ba1ee5 100644 (file)
@@ -631,7 +631,7 @@ Appendix 1: Keytab Requirements
        * Because the number of U/L case combinations got 'too hard' to put into
          a keytab in the traditional way (with the client to specify the name),
          we either pre-compute the keys into a traditional keytab or make an
-         in-MEMORY keytab at run time.  In both cases we specifiy the principal
+         in-MEMORY keytab at run time.  In both cases we specify the principal
          name to GSSAPI, which avoids the need to store duplicate principals.
        * We use a 'private' keytab in our private dir, referenced from the
          secrets.ldb by default.
index bd29377b1b684c418442ed150954710764f3eddd..b38f1674594e66b24af5ccaf082a653755c9944f 100644 (file)
@@ -1473,7 +1473,7 @@ static int setup_primary_samba_gpg(struct setup_password_fields_io *io,
                if (len < 16) {
                        ldb_debug(ldb, LDB_DEBUG_FATAL,
                                  "%s:%s: ki[%zu] key_id[%s] strlen < 16, "
-                                 "please specifiy at least the 64bit key id\n",
+                                 "please specify at least the 64bit key id\n",
                                  __location__, __func__,
                                  ki, key_id);
                        for (kr = 0; keys[kr] != NULL; kr++) {
index 350bf790b861942822094b734903711d23f2d151..3391e4cd638dbc2c1d14c020a896e9c7c499c2ab 100644 (file)
@@ -261,7 +261,7 @@ class Rdata(object):
         # A number of types compare rdata in wire form, so we provide
         # the method here instead of duplicating it.
         #
-        # We specifiy an arbitrary origin of '.' when doing the
+        # We specify an arbitrary origin of '.' when doing the
         # comparison, since the rdata may have relative names and we
         # can't convert a relative name to wire without an origin.
         b1 = cStringIO.StringIO()