diff options
author | Dave Reisner <d@falconindy.com> | 2010-09-29 09:13:04 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-05 21:50:56 +0200 |
commit | c899f8c61a6f42ec53dbc5645e0ff96c58b2d57a (patch) | |
tree | b093b751cce215f4eb38b8510295ab83f7448809 | |
parent | 7607fea6a1c3301f86dea204ab7c7e0d98385464 (diff) |
fix typo: s/seperat/separat/g
-rw-r--r-- | man/systemd.service.xml | 2 | ||||
-rw-r--r-- | src/log.c | 2 | ||||
-rw-r--r-- | src/logger.c | 2 | ||||
-rw-r--r-- | src/mount.c | 2 | ||||
-rw-r--r-- | src/util.c | 12 | ||||
-rw-r--r-- | src/util.h | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/man/systemd.service.xml b/man/systemd.service.xml index 7fc3205ff1..66806f1bd2 100644 --- a/man/systemd.service.xml +++ b/man/systemd.service.xml @@ -307,7 +307,7 @@ the command in <varname>ExecStart=</varname>. Multiple command lines may be concatenated in a - single directive, by seperating them + single directive, by separating them by semicolons (these semicolons must be passed as separate words). In that case, the commands are executed one @@ -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 9d67ab6bd8..9c3cb1abd7 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 fd77516076..b17fe2a7d3 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 ce8695be25..98dbe28b54 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 ae00ff50c4..f21aecf256 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); |