1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-02 09:47:03 +03:00

treewide: fix typos (#3187)

This commit is contained in:
Torstein Husebø 2016-05-04 11:26:17 +02:00 committed by Lennart Poettering
parent 1ed7ebcfca
commit f8e2f4d6a0
5 changed files with 6 additions and 6 deletions

View 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 * 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. * 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. */ * operation currently (renameat2() does), and there is no nice way to emulate this. */
if (path) { if (path) {

View File

@ -3160,7 +3160,7 @@ int journal_file_open(
goto fail; 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; f->close_fd = true;
*ret = f; *ret = f;

View File

@ -1942,7 +1942,7 @@ _public_ int sd_journal_open_files_fd(sd_journal **ret, int fds[], unsigned n_fd
return 0; return 0;
fail: 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 */ * remain open */
ORDERED_HASHMAP_FOREACH(f, j->files, iterator) ORDERED_HASHMAP_FOREACH(f, j->files, iterator)
f->close_fd = false; f->close_fd = false;

View File

@ -810,7 +810,7 @@ static void dns_query_accept(DnsQuery *q, DnsQueryCandidate *c) {
switch (t->state) { switch (t->state) {
case DNS_TRANSACTION_SUCCESS: { 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); r = dns_answer_extend(&q->answer, t->answer);
if (r < 0) if (r < 0)
goto fail; goto fail;

View 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 /* Make sure nobody takes the new name, between the time we
* checked it is currently unused in all search paths, and the * 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); r = image_name_lock(new_name, LOCK_EX|LOCK_NB, &name_lock);
if (r < 0) if (r < 0)
return r; 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 /* Make sure nobody takes the new name, between the time we
* checked it is currently unused in all search paths, and the * 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); r = image_name_lock(new_name, LOCK_EX|LOCK_NB, &name_lock);
if (r < 0) if (r < 0)
return r; return r;