Spelling fixes s/recieved/received/
authorMathieu Parent <math.parent@gmail.com>
Thu, 29 Aug 2019 20:02:13 +0000 (22:02 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 1 Sep 2019 22:21:27 +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>
lib/talloc/testsuite.c
source4/dsdb/tests/python/sort.py
source4/selftest/win/common.exp

index aa5c771ea31e524c93fd42d97304b025f172b684..6c9bf203b7c2f8f05a92aef4644d6b7cdcc39875 100644 (file)
@@ -2010,7 +2010,7 @@ static bool test_magic_protection(void)
                return false;
        }
        if (WIFSIGNALED(exit_status)) {
-               printf("Child recieved unexpected signal\n");
+               printf("Child received unexpected signal\n");
                return false;
        }
 
@@ -2074,7 +2074,7 @@ static bool test_magic_free_protection(void)
                return false;
        }
        if (WIFSIGNALED(exit_status)) {
-               printf("Child recieved unexpected signal\n");
+               printf("Child received unexpected signal\n");
                return false;
        }
 
index 19e8f7f2fcb60bcdd23d5b176f728949710b31dc..4593c8c74503b9a6416d5480f915555f27252b14 100644 (file)
@@ -226,7 +226,7 @@ class BaseSortTests(samba.tests.TestCase):
                 if expected_order != received_order:
                     print(attr, ['forward', 'reverse'][rev])
                     print("expected", expected_order)
-                    print("recieved", received_order)
+                    print("received", received_order)
                     print("unnormalised:", [x[attr][0] for x in res])
                     print("unnormalised: «%s»" % '»  «'.join(str(x[attr][0])
                                                              for x in res))
@@ -273,7 +273,7 @@ class BaseSortTests(samba.tests.TestCase):
                         print(attr, lang)
                         print(['forward', 'reverse'][rev])
                         print("expected: ", expected_order)
-                        print("recieved: ", received_order)
+                        print("received: ", received_order)
                         print("unnormalised:", [x[attr][0] for x in res])
                         print("unnormalised: «%s»" % '»  «'.join(str(x[attr][0])
                                                                  for x in res))
@@ -322,7 +322,7 @@ class BaseSortTests(samba.tests.TestCase):
                 if expected_order != received_order:
                     print(sort_attr, result_attr, ['forward', 'reverse'][rev])
                     print("expected", expected_order)
-                    print("recieved", received_order)
+                    print("received", received_order)
                     print("unnormalised:", [x[result_attr][0] for x in res])
                     print("unnormalised: «%s»" % '»  «'.join(str(x[result_attr][0])
                                                              for x in res))
index 28a3d7a6a19183b22a253b8bd9e725025becb8c8..93d24a6cf716a47de5abade0a80c813dfe4e65e4 100644 (file)
@@ -246,7 +246,7 @@ proc expect_prompt { remote_prompt } {
 }
 
 # This function will create a telnet login shell to $remote_host as $username.
-# If expected dialogue is not recieved, return with a specific error if one
+# If expected dialogue is not received, return with a specific error if one
 # is recognized. Otherwise return a generic error indicating the function
 # name.
 proc telnet_login { remote_prompt remote_host username password } {