summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/log.c2
-rw-r--r--src/logger.c2
-rw-r--r--src/mount.c2
-rw-r--r--src/util.c12
-rw-r--r--src/util.h2
5 files changed, 10 insertions, 10 deletions
diff --git a/src/log.c b/src/log.c
index 2dd3e978f..d82747ea8 100644
--- a/src/log.c
+++ b/src/log.c
@@ -300,7 +300,7 @@ static int write_to_syslog(
IOVEC_SET_STRING(iovec[3], header_pid);
IOVEC_SET_STRING(iovec[4], buffer);
- /* When using syslog via SOCK_STREAM seperate the messages by NUL chars */
+ /* When using syslog via SOCK_STREAM separate the messages by NUL chars */
if (syslog_is_stream)
iovec[4].iov_len++;
diff --git a/src/logger.c b/src/logger.c
index 9d67ab6bd..9c3cb1abd 100644
--- a/src/logger.c
+++ b/src/logger.c
@@ -174,7 +174,7 @@ static int stream_log(Stream *s, char *p, usec_t ts) {
IOVEC_SET_STRING(iovec[3], header_pid);
IOVEC_SET_STRING(iovec[4], p);
- /* When using syslog via SOCK_STREAM seperate the messages by NUL chars */
+ /* When using syslog via SOCK_STREAM separate the messages by NUL chars */
if (s->server->syslog_is_stream)
iovec[4].iov_len++;
diff --git a/src/mount.c b/src/mount.c
index fd7751607..b17fe2a7d 100644
--- a/src/mount.c
+++ b/src/mount.c
@@ -1427,7 +1427,7 @@ static int mount_load_proc_self_mountinfo(Manager *m, bool set_flags) {
"%ms " /* (5) mount point */
"%ms" /* (6) mount options */
"%*[^-]" /* (7) optional fields */
- "- " /* (8) seperator */
+ "- " /* (8) separator */
"%ms " /* (9) file system type */
"%ms" /* (10) mount source */
"%ms" /* (11) mount options 2 */
diff --git a/src/util.c b/src/util.c
index ce8695be2..98dbe28b5 100644
--- a/src/util.c
+++ b/src/util.c
@@ -600,13 +600,13 @@ finish:
int parse_env_file(
const char *fname,
- const char *seperator, ...) {
+ const char *separator, ...) {
int r = 0;
char *contents, *p;
assert(fname);
- assert(seperator);
+ assert(separator);
if ((r = read_full_file(fname, &contents)) < 0)
return r;
@@ -615,7 +615,7 @@ int parse_env_file(
for (;;) {
const char *key = NULL;
- p += strspn(p, seperator);
+ p += strspn(p, separator);
p += strspn(p, WHITESPACE);
if (!*p)
@@ -625,7 +625,7 @@ int parse_env_file(
va_list ap;
char **value;
- va_start(ap, seperator);
+ va_start(ap, separator);
while ((key = va_arg(ap, char *))) {
size_t n;
char *v;
@@ -638,7 +638,7 @@ int parse_env_file(
continue;
p += n + 1;
- n = strcspn(p, seperator);
+ n = strcspn(p, separator);
if (n >= 2 &&
strchr(QUOTES, p[0]) &&
@@ -671,7 +671,7 @@ int parse_env_file(
}
if (!key)
- p += strcspn(p, seperator);
+ p += strcspn(p, separator);
}
fail:
diff --git a/src/util.h b/src/util.h
index ae00ff50c..f21aecf25 100644
--- a/src/util.h
+++ b/src/util.h
@@ -191,7 +191,7 @@ int write_one_line_file(const char *fn, const char *line);
int read_one_line_file(const char *fn, char **line);
int read_full_file(const char *fn, char **contents);
-int parse_env_file(const char *fname, const char *seperator, ...) _sentinel_;
+int parse_env_file(const char *fname, const char *separator, ...) _sentinel_;
char *strappend(const char *s, const char *suffix);
char *strnappend(const char *s, const char *suffix, size_t length);