chiark / gitweb /
build-sys: allow cross-compilation
[elogind.git] / src / logger.c
index 9d67ab6bd82074d407957cbda87ffdc44b90340c..32c57f8f82a6046d9e1bf1520d406b6b8a3fffa5 100644 (file)
@@ -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++;
 
@@ -318,7 +318,7 @@ static int stream_process(Stream *s, usec_t ts) {
                         return 0;
 
                 log_warning("Failed to read from stream: %m");
-                return -1;
+                return -errno;
         }