treewide: fix typos (#3187)
authorTorstein Husebø <torstein@huseboe.net>
Wed, 4 May 2016 09:26:17 +0000 (11:26 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 4 May 2016 09:26:17 +0000 (11:26 +0200)
src/basic/fileio.c
src/journal/journal-file.c
src/journal/sd-journal.c
src/resolve/resolved-dns-query.c
src/shared/machine-image.c

index 2a9b6e4..29f5374 100644 (file)
@@ -1337,7 +1337,7 @@ int link_tmpfile(int fd, const char *path, const char *target) {
          * created with O_TMPFILE is assumed, and linkat() is used. Otherwise it is assumed O_TMPFILE is not supported
          * on the directory, and renameat2() is used instead.
          *
-         * Note that in both cases we will not replace existing files. This is because linkat() dos not support this
+         * Note that in both cases we will not replace existing files. This is because linkat() does not support this
          * operation currently (renameat2() does), and there is no nice way to emulate this. */
 
         if (path) {
index ec50333..7504326 100644 (file)
@@ -3160,7 +3160,7 @@ int journal_file_open(
                         goto fail;
         }
 
-        /* The file is opened now successfully, thus we take possesion of any passed in fd. */
+        /* The file is opened now successfully, thus we take possession of any passed in fd. */
         f->close_fd = true;
 
         *ret = f;
index 27c1dd3..1cea68a 100644 (file)
@@ -1942,7 +1942,7 @@ _public_ int sd_journal_open_files_fd(sd_journal **ret, int fds[], unsigned n_fd
         return 0;
 
 fail:
-        /* If we fail, make sure we don't take possession of the files we managed to make use of successfuly, and they
+        /* If we fail, make sure we don't take possession of the files we managed to make use of successfully, and they
          * remain open */
         ORDERED_HASHMAP_FOREACH(f, j->files, iterator)
                 f->close_fd = false;
index 706f8c1..ea04e58 100644 (file)
@@ -810,7 +810,7 @@ static void dns_query_accept(DnsQuery *q, DnsQueryCandidate *c) {
                 switch (t->state) {
 
                 case DNS_TRANSACTION_SUCCESS: {
-                        /* We found a successfuly reply, merge it into the answer */
+                        /* We found a successfully reply, merge it into the answer */
                         r = dns_answer_extend(&q->answer, t->answer);
                         if (r < 0)
                                 goto fail;
index 66f58ec..529d89e 100644 (file)
@@ -487,7 +487,7 @@ int image_rename(Image *i, const char *new_name) {
 
         /* Make sure nobody takes the new name, between the time we
          * checked it is currently unused in all search paths, and the
-         * time we take possesion of it */
+         * time we take possession of it */
         r = image_name_lock(new_name, LOCK_EX|LOCK_NB, &name_lock);
         if (r < 0)
                 return r;
@@ -588,7 +588,7 @@ int image_clone(Image *i, const char *new_name, bool read_only) {
 
         /* Make sure nobody takes the new name, between the time we
          * checked it is currently unused in all search paths, and the
-         * time we take possesion of it */
+         * time we take possession of it */
         r = image_name_lock(new_name, LOCK_EX|LOCK_NB, &name_lock);
         if (r < 0)
                 return r;