Spelling fixes s/emtpy/empty/
authorMathieu Parent <math.parent@gmail.com>
Thu, 29 Aug 2019 19:52:10 +0000 (21:52 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 1 Sep 2019 22:21:26 +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>
source3/libgpo/gpext/scripts.c
source3/locking/share_mode_lock.c
source3/registry/reg_objects.c
source3/utils/conn_tdb.c
source4/torture/rpc/epmapper.c
source4/torture/smb2/create.c

index dfa9958e326a702d0de9130f8167706ee31f188d..fe0f1393aa9afb0ea1914c9dc433edd48061da06 100644 (file)
@@ -418,7 +418,7 @@ static NTSTATUS scripts_process_group_policy(TALLOC_CTX *mem_ctx,
                        werr = scripts_apply(ini_ctx->mem_ctx, token, root_key,
                                             flags, list[i], gpo, entries, num_entries);
                        if (!W_ERROR_IS_OK(werr)) {
-                               continue; /* FIXME: finally fix storing emtpy strings and REG_QWORD! */
+                               continue; /* FIXME: finally fix storing empty strings and REG_QWORD! */
                        }
                }
 
index 3c1e9a8a2cb14788643e71b38e398cd0cc74dccf..5c997bd61a094d5e131cdd4728645464391b2be1 100644 (file)
@@ -411,7 +411,7 @@ static NTSTATUS share_mode_data_store(struct share_mode_data *d)
 
        if (d->num_share_modes == 0) {
                if (d->fresh) {
-                       DBG_DEBUG("Ignoring fresh emtpy record\n");
+                       DBG_DEBUG("Ignoring fresh empty record\n");
                        return NT_STATUS_OK;
                }
                status = dbwrap_record_delete(d->record);
index f61822b5919c844652e721d709ccae1272a57232..393d213322236d796d875260f6bdaefec0ada04a 100644 (file)
@@ -89,7 +89,7 @@ WERROR regsubkey_ctr_init(TALLOC_CTX *mem_ctx, struct regsubkey_ctr **ctr)
 }
 
 /**
- * re-initialize the list of subkeys (to the emtpy list)
+ * re-initialize the list of subkeys (to the empty list)
  * in an already allocated regsubkey_ctr
  */
 
index 2d8d2d9e042d4ac4e4b62b9ff8a9121f8b1826e9..3d714382e1b58eaf68478dfd146e447f3041d465 100644 (file)
@@ -104,7 +104,7 @@ static int traverse_tcon_fn(struct smbXsrv_tcon_global0 *global,
        if (strlen(global->share_name) == 0) {
                /*
                 * when a smbXsrv_tcon is created it's created
-                * with emtpy share_name first in order to allocate
+                * with empty share_name first in order to allocate
                 * an id, before filling in the details.
                 */
                return 0;
index 9033d58083b49ec9f14fdc8c623d01fd4f825946..f32d122b36e15c210700c1bb3c241e99b209e4ae 100644 (file)
@@ -426,7 +426,7 @@ static bool test_Map_simple(struct torture_context *tctx,
 
        torture_assert(tctx,
                       ndr_policy_handle_empty(&entry_handle),
-                      "epm_Map_simple failed - The policy handle should be emtpy.");
+                      "epm_Map_simple failed - The policy handle should be empty.");
 
        return true;
 }
@@ -526,7 +526,7 @@ static bool test_Lookup_simple(struct torture_context *tctx,
 
        torture_assert(tctx,
                       ndr_policy_handle_empty(&entry_handle),
-                      "epm_Lookup failed - The policy handle should be emtpy.");
+                      "epm_Lookup failed - The policy handle should be empty.");
 
        return true;
 }
index 9b32062ab07f43089491fda7128be90ee98e8058..e6181c240cc8f925b7485f521d1aa1aa49aaf296 100644 (file)
@@ -1703,7 +1703,7 @@ static bool test_dir_alloc_size(struct torture_context *tctx,
         * smb_roundup(..., stat.st_size) which would be 1 MB by
         * default.
         *
-        * Windows returns 0 for emtpy directories, once directories
+        * Windows returns 0 for empty directories, once directories
         * have a few entries it starts replying with values > 0.
         */
        c.in.alloc_size = 1024*1024*1024;