Fix spelling s/propogate/propagate/
authorMathieu Parent <math.parent@gmail.com>
Fri, 4 May 2018 20:22:46 +0000 (22:22 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sat, 12 May 2018 00:09:27 +0000 (02:09 +0200)
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
ctdb/server/ctdb_ltdb_server.c
source4/dsdb/samdb/ldb_modules/repl_meta_data.c
source4/dsdb/samdb/ldb_modules/util.c
source4/ntvfs/common/opendb_tdb.c
source4/torture/raw/notify.c
source4/torture/smb2/notify.c
wintest/test-s4-howto.py

index c199aac2d1dd4747843fade848b56f3025a45192..d94d942a9fae3fb41a09a913958af67bfea5728f 100644 (file)
@@ -1521,7 +1521,7 @@ int32_t ctdb_ltdb_update_seqnum(struct ctdb_context *ctdb, uint32_t db_id, uint3
 }
 
 /*
 }
 
 /*
-  timer to check for seqnum changes in a ltdb and propogate them
+  timer to check for seqnum changes in a ltdb and propagate them
  */
 static void ctdb_ltdb_seqnum_check(struct tevent_context *ev,
                                   struct tevent_timer *te,
  */
 static void ctdb_ltdb_seqnum_check(struct tevent_context *ev,
                                   struct tevent_timer *te,
@@ -1531,7 +1531,7 @@ static void ctdb_ltdb_seqnum_check(struct tevent_context *ev,
        struct ctdb_context *ctdb = ctdb_db->ctdb;
        uint32_t new_seqnum = tdb_get_seqnum(ctdb_db->ltdb->tdb);
        if (new_seqnum != ctdb_db->seqnum) {
        struct ctdb_context *ctdb = ctdb_db->ctdb;
        uint32_t new_seqnum = tdb_get_seqnum(ctdb_db->ltdb->tdb);
        if (new_seqnum != ctdb_db->seqnum) {
-               /* something has changed - propogate it */
+               /* something has changed - propagate it */
                TDB_DATA data;
                data.dptr = (uint8_t *)&ctdb_db->db_id;
                data.dsize = sizeof(uint32_t);
                TDB_DATA data;
                data.dptr = (uint8_t *)&ctdb_db->db_id;
                data.dsize = sizeof(uint32_t);
index a89a816c8693db9d914d0f0368a125bd31ea4b1f..e739400634c57f6c230cc4e77996059f6e8bde0f 100644 (file)
@@ -4731,7 +4731,7 @@ static int replmd_make_deleted_child_dn(TALLOC_CTX *tmp_ctx,
   their current values. This has the effect of changing these
   attributes to have been last updated by the current DC. This is
   needed to ensure that renames performed as part of conflict
   their current values. This has the effect of changing these
   attributes to have been last updated by the current DC. This is
   needed to ensure that renames performed as part of conflict
-  resolution are propogated to other DCs
+  resolution are propagated to other DCs
  */
 static int replmd_name_modify(struct replmd_replicated_request *ar,
                              struct ldb_request *req, struct ldb_dn *dn)
  */
 static int replmd_name_modify(struct replmd_replicated_request *ar,
                              struct ldb_request *req, struct ldb_dn *dn)
index 9e37c085bbadd72c181526847f0ac3aac61cb88c..738b773611d9058499d36273437e1aefcad16d28 100644 (file)
@@ -688,7 +688,7 @@ int dsdb_check_single_valued_link(const struct dsdb_attribute *attr,
   place. For example, the recyclebin feature is marked as enabled both
   on the CN=Partitions,CN=Configurration object and on the NTDS DN of
   each DC in the forest. It seems likely that it is the job of the KCC
   place. For example, the recyclebin feature is marked as enabled both
   on the CN=Partitions,CN=Configurration object and on the NTDS DN of
   each DC in the forest. It seems likely that it is the job of the KCC
-  to propogate between the two
+  to propagate between the two
  */
 int dsdb_check_optional_feature(struct ldb_module *module, struct GUID op_feature_guid, bool *feature_enabled)
 {
  */
 int dsdb_check_optional_feature(struct ldb_module *module, struct GUID op_feature_guid, bool *feature_enabled)
 {
index 2047a0b3145c1976edcc71b406aa3eb74b9cbbe9..9fe0b2627ee0cd7fadf778b138e7a889a94c29d9 100644 (file)
@@ -352,7 +352,7 @@ static NTSTATUS odb_tdb_open_can_internal(struct odb_context *odb,
                        /* a batch oplock caches close calls, which
                           means the client application might have
                           already closed the file. We have to allow
                        /* a batch oplock caches close calls, which
                           means the client application might have
                           already closed the file. We have to allow
-                          this close to propogate by sending a oplock
+                          this close to propagate by sending a oplock
                           break request and suspending this call
                           until the break is acknowledged or the file
                           is closed */
                           break request and suspending this call
                           until the break is acknowledged or the file
                           is closed */
index fdb5771bf3d9f97af78142ec9941da30f7969b06..afb4a8eb5f2986889f31bd012af3212f371b8602 100644 (file)
@@ -1462,7 +1462,7 @@ static bool test_notify_tree(struct torture_context *tctx,
                talloc_free(path);
        }
 
                talloc_free(path);
        }
 
-       /* give a bit of time for the events to propogate */
+       /* give a bit of time for the events to propagate */
        tv = timeval_current();
 
        do {
        tv = timeval_current();
 
        do {
@@ -1485,7 +1485,7 @@ static bool test_notify_tree(struct torture_context *tctx,
                }
        } while (!all_done && timeval_elapsed(&tv) < 20);
 
                }
        } while (!all_done && timeval_elapsed(&tv) < 20);
 
-       torture_comment(tctx, "took %.4f seconds to propogate all events\n", timeval_elapsed(&tv));
+       torture_comment(tctx, "took %.4f seconds to propagate all events\n", timeval_elapsed(&tv));
 
        for (i=0;i<ARRAY_SIZE(dirs);i++) {
                torture_assert_int_equal_goto(tctx,
 
        for (i=0;i<ARRAY_SIZE(dirs);i++) {
                torture_assert_int_equal_goto(tctx,
index 6ef24fe889e57a117cff32738c688a1dbd96a1f0..d13f1c0506c76731fd07ac04cebaffd7fedea8cd 100644 (file)
@@ -1878,7 +1878,7 @@ static bool torture_smb2_notify_tree(struct torture_context *torture,
                talloc_free(path);
        }
 
                talloc_free(path);
        }
 
-       /* give a bit of time for the events to propogate */
+       /* give a bit of time for the events to propagate */
        tv = timeval_current();
 
        do {
        tv = timeval_current();
 
        do {
@@ -1904,7 +1904,7 @@ static bool torture_smb2_notify_tree(struct torture_context *torture,
                }
        } while (!all_done && timeval_elapsed(&tv) < 20);
 
                }
        } while (!all_done && timeval_elapsed(&tv) < 20);
 
-       torture_comment(torture, "took %.4f seconds to propogate all events\n",
+       torture_comment(torture, "took %.4f seconds to propagate all events\n",
                        timeval_elapsed(&tv));
 
        for (i=0;i<ARRAY_SIZE(dirs);i++) {
                        timeval_elapsed(&tv));
 
        for (i=0;i<ARRAY_SIZE(dirs);i++) {
index e290b07732d2eecfa61b1bce79d5afff430cda21..e8f2111fafa25e45d5f88870e7ca7cf1fb4da1b6 100755 (executable)
@@ -269,12 +269,12 @@ def test_dcpromo(t, vm):
     child.expect("CN=Schema,CN=Configuration,${BASEDN}")
     child.expect("was successful")
 
     child.expect("CN=Schema,CN=Configuration,${BASEDN}")
     child.expect("was successful")
 
-    t.info("Checking if new users propogate to windows")
+    t.info("Checking if new users propagate to windows")
     t.retry_cmd('bin/samba-tool user add test2 ${PASSWORD2}', ["created successfully"])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${LCREALM} -Utest2%%${PASSWORD2} -k no" % (smbclient), ['Sharename', 'Remote IPC'])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${LCREALM} -Utest2%%${PASSWORD2} -k yes" % (smbclient), ['Sharename', 'Remote IPC'])
 
     t.retry_cmd('bin/samba-tool user add test2 ${PASSWORD2}', ["created successfully"])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${LCREALM} -Utest2%%${PASSWORD2} -k no" % (smbclient), ['Sharename', 'Remote IPC'])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${LCREALM} -Utest2%%${PASSWORD2} -k yes" % (smbclient), ['Sharename', 'Remote IPC'])
 
-    t.info("Checking if new users on windows propogate to samba")
+    t.info("Checking if new users on windows propagate to samba")
     child.sendline("net user test3 ${PASSWORD3} /add")
     while True:
         i = child.expect(["The command completed successfully",
     child.sendline("net user test3 ${PASSWORD3} /add")
     while True:
         i = child.expect(["The command completed successfully",
@@ -458,12 +458,12 @@ def test_join_as_dc(t, vm):
     child.expect("CN=Configuration,${WIN_BASEDN}")
     child.expect("was successful")
 
     child.expect("CN=Configuration,${WIN_BASEDN}")
     child.expect("was successful")
 
-    t.info("Checking if new users propogate to windows")
+    t.info("Checking if new users propagate to windows")
     t.retry_cmd('bin/samba-tool user add test2 ${PASSWORD2}', ["created successfully"])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${WIN_REALM} -Utest2%%${PASSWORD2} -k no" % (smbclient), ['Sharename', 'Remote IPC'])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${WIN_REALM} -Utest2%%${PASSWORD2} -k yes" % (smbclient), ['Sharename', 'Remote IPC'])
 
     t.retry_cmd('bin/samba-tool user add test2 ${PASSWORD2}', ["created successfully"])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${WIN_REALM} -Utest2%%${PASSWORD2} -k no" % (smbclient), ['Sharename', 'Remote IPC'])
     t.retry_cmd("%s -L ${WIN_HOSTNAME}.${WIN_REALM} -Utest2%%${PASSWORD2} -k yes" % (smbclient), ['Sharename', 'Remote IPC'])
 
-    t.info("Checking if new users on windows propogate to samba")
+    t.info("Checking if new users on windows propagate to samba")
     child.sendline("net user test3 ${PASSWORD3} /add")
     child.expect("The command completed successfully")
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k no" % (smbclient), ['Sharename', 'IPC'])
     child.sendline("net user test3 ${PASSWORD3} /add")
     child.expect("The command completed successfully")
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k no" % (smbclient), ['Sharename', 'IPC'])
@@ -538,14 +538,14 @@ def test_join_as_rodc(t, vm):
                    ordered=True,
                    regex=True)
 
                    ordered=True,
                    regex=True)
 
-    t.info("Checking if new users on windows propogate to samba")
+    t.info("Checking if new users on windows propagate to samba")
     child.sendline("net user test3 ${PASSWORD3} /add")
     child.expect("The command completed successfully")
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k no" % (smbclient), ['Sharename', 'IPC'])
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k yes" % (smbclient), ['Sharename', 'IPC'])
 
     # should this work?
     child.sendline("net user test3 ${PASSWORD3} /add")
     child.expect("The command completed successfully")
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k no" % (smbclient), ['Sharename', 'IPC'])
     t.retry_cmd("%s -L ${HOSTNAME}.${WIN_REALM} -Utest3%%${PASSWORD3} -k yes" % (smbclient), ['Sharename', 'IPC'])
 
     # should this work?
-    t.info("Checking if new users propogate to windows")
+    t.info("Checking if new users propagate to windows")
     t.cmd_contains('bin/samba-tool user add test2 ${PASSWORD2}', ['No RID Set DN'])
 
     t.info("Checking propogation of user deletion")
     t.cmd_contains('bin/samba-tool user add test2 ${PASSWORD2}', ['No RID Set DN'])
 
     t.info("Checking propogation of user deletion")