summaryrefslogtreecommitdiff
path: root/src/shared/nscd-flush.c
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2019-04-26 20:22:40 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-04-29 16:47:18 +0200
commit5238e9575906297608ff802a27e2ff9effa3b338 (patch)
treee17c534a09908167a0697a49ed3237f43134eb4c /src/shared/nscd-flush.c
parent51aba17b88617515e037e8985d3a4ea871ac47fe (diff)
downloadsystemd-5238e9575906297608ff802a27e2ff9effa3b338.tar.gz
codespell: fix spelling errors
Diffstat (limited to 'src/shared/nscd-flush.c')
-rw-r--r--src/shared/nscd-flush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/nscd-flush.c b/src/shared/nscd-flush.c
index 5a04468d2c..33a06a010c 100644
--- a/src/shared/nscd-flush.c
+++ b/src/shared/nscd-flush.c
@@ -51,7 +51,7 @@ static int nscd_flush_cache_one(const char *database, usec_t end) {
/* Note: connect() returns EINPROGRESS if O_NONBLOCK is set and establishing a connection takes time. The
* kernel lets us know this way that the connection is now being established, and we should watch with poll()
* to learn when it is fully established. That said, AF_UNIX on Linux never triggers this IRL (connect() is
- * always instant on AF_UNIX), hence handling this is mostly just an excercise in defensive, protocol-agnostic
+ * always instant on AF_UNIX), hence handling this is mostly just an exercise in defensive, protocol-agnostic
* programming.
*
* connect() returns EAGAIN if the socket's backlog limit has been reached. When we see this we give up right
@@ -113,7 +113,7 @@ static int nscd_flush_cache_one(const char *database, usec_t end) {
if (has_written >= req_size && has_read >= sizeof(resp)) { /* done? */
if (resp < 0)
- return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG), "nscd sent us a negative error numer: %i", resp);
+ return log_debug_errno(SYNTHETIC_ERRNO(EBADMSG), "nscd sent us a negative error number: %i", resp);
if (resp > 0)
return log_debug_errno(resp, "nscd return failure code on invalidating '%s'.", database);
return 1;