Spelling fixes s/preceeding/preceding/
authorMathieu Parent <math.parent@gmail.com>
Thu, 29 Aug 2019 20:39:39 +0000 (22:39 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 1 Sep 2019 22:21:28 +0000 (22:21 +0000)
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
docs-xml/Samba-Developers-Guide/CodingSuggestions.xml
docs-xml/Samba-Developers-Guide/parsing.xml
lib/util/debug.c
source3/registry/regfio.c
source3/smbd/filename.c
source4/dsdb/samdb/ldb_modules/objectclass_attrs.c
source4/selftest/win/VMHost.pm

index 14044ca1bf7f7aa82634de415204ed097e6b15cb..4adb8cb09b7d5d4c0c2c6645ea88a995f5e93792 100644 (file)
@@ -232,7 +232,7 @@ Here are some other suggestions:
 
 <para>
 The suggestions above are simply that, suggestions, but the information may
-help in reducing the routine rework done on new code.  The preceeding list
+help in reducing the routine rework done on new code.  The preceding list
 is expected to change routinely as new support routines and macros are
 added.
 </para>
index e0d5fe385b6e3ec60b705ad4d6cd772b3e8eee39..c6daf350e7caec88c14187bfbb14a82d93eda5a8 100644 (file)
@@ -122,7 +122,7 @@ analyzer.  For example:
 <para>
 Note that there are five spaces following the word 'string',
 representing the one space between 'string' and '\\' in the top
-line, plus the four preceeding the word 'with' in the second line.
+line, plus the four preceding the word 'with' in the second line.
 (Yes, I'm counting the indentation.)
 </para>
 
index c42022ec9bbae4440b4bd84a9288e85969075054..6f081d45110423ba8e52ebc5e38a444745bf423a 100644 (file)
@@ -857,7 +857,7 @@ static bool debug_parse_param(char *param)
 /****************************************************************************
  Parse the debug levels from smb.conf. Example debug level string:
   3 tdb:5 printdrivers:7
- Note: the 1st param has no "name:" preceeding it.
+ Note: the 1st param has no "name:" preceding it.
 ****************************************************************************/
 
 bool debug_parse_levels(const char *params_str)
index 60c865d4d2268f1d0b8d5d1640f58d5d2bdcc2ba..4c6271cda7aa603949f59987086511127199ec67 100644 (file)
@@ -519,7 +519,7 @@ static REGF_HBIN* read_hbin_block( REGF_FILE *file, off_t offset )
           previous 4 bytes contains the amount of free space remaining 
           in the hbin block. */
 
-       /* remember that the record_size is in the 4 bytes preceeding the record itself */
+       /* remember that the record_size is in the 4 bytes preceding the record itself */
 
        if ( !prs_set_offset( &hbin->ps, file->data_offset+HBIN_HDR_SIZE-sizeof(uint32_t) ) )
                return NULL;
index 5a3b8cc2ebf34b30642a83b3cba2e0576bd51d8d..32e5835e676d0934e4668ff2b5721e802a44749d 100644 (file)
@@ -287,7 +287,7 @@ static NTSTATUS rearrange_snapshot_path(struct smb_filename *smb_fname,
        if (*endp == '\0') {
                /*
                 * @GMT-token was at end of path.
-                * Remove any preceeding '/'
+                * Remove any preceding '/'
                 */
                if (startp > smb_fname->base_name && startp[-1] == '/') {
                        startp--;
index 67c93ca08d8e2449008f7cd4d2cad41ce875b8ab..e5f86d260f4869a4d020d8dff4700da8690d4039 100644 (file)
@@ -347,7 +347,7 @@ static int attr_handler2(struct oc_context *ac)
                return ldb_operr(ldb);
        }
 
-       /* We rely here on the preceeding "objectclass" LDB module which did
+       /* We rely here on the preceding "objectclass" LDB module which did
         * already fix up the objectclass list (inheritance, order...). */
        oc_element = ldb_msg_find_element(ac->search_res->message,
                                          "objectClass");
index 1f02f21c284a1f02cf7d0316e34a713c6da0e922..37d721e9d0beda6837fd8a394a1c600775f6d0cf 100644 (file)
@@ -298,7 +298,7 @@ use VMware::Vix::API::Constants;
                                }
                        }
                } else {
-                       # Strip if preceeding path from $src_path.
+                       # Strip if preceding path from $src_path.
                        my $src_file = substr($src_path, ($idx + 1), $len);
                        my $dest_path = $dest_dir . $src_file;