chiark / gitweb /
treewide: auto-convert the simple cases to log_*_errno()
[elogind.git] / src / journal / journald-stream.c
index 8a983d84d9f7b216f326feba865caa86aa1eb988..580f74624946224260e6cc944ba7d6691b76003b 100644 (file)
@@ -395,7 +395,7 @@ static int stdout_stream_new(sd_event_source *es, int listen_fd, uint32_t revent
         }
 
 #ifdef HAVE_SELINUX
-        if (use_selinux()) {
+        if (mac_selinux_use()) {
                 if (getpeercon(fd, &stream->security_context) < 0 && errno != ENOPROTOOPT)
                         log_error("Failed to determine peer security context: %m");
         }
@@ -408,13 +408,13 @@ static int stdout_stream_new(sd_event_source *es, int listen_fd, uint32_t revent
 
         r = sd_event_add_io(s->event, &stream->event_source, fd, EPOLLIN, stdout_stream_process, stream);
         if (r < 0) {
-                log_error("Failed to add stream to event loop: %s", strerror(-r));
+                log_error_errno(-r, "Failed to add stream to event loop: %m");
                 goto fail;
         }
 
         r = sd_event_source_set_priority(stream->event_source, SD_EVENT_PRIORITY_NORMAL+5);
         if (r < 0) {
-                log_error("Failed to adjust stdout event source priority: %s", strerror(-r));
+                log_error_errno(-r, "Failed to adjust stdout event source priority: %m");
                 goto fail;
         }
 
@@ -465,13 +465,13 @@ int server_open_stdout_socket(Server *s) {
 
         r = sd_event_add_io(s->event, &s->stdout_event_source, s->stdout_fd, EPOLLIN, stdout_stream_new, s);
         if (r < 0) {
-                log_error("Failed to add stdout server fd to event source: %s", strerror(-r));
+                log_error_errno(-r, "Failed to add stdout server fd to event source: %m");
                 return r;
         }
 
         r = sd_event_source_set_priority(s->stdout_event_source, SD_EVENT_PRIORITY_NORMAL+10);
         if (r < 0) {
-                log_error("Failed to adjust priority of stdout server event source: %s", strerror(-r));
+                log_error_errno(-r, "Failed to adjust priority of stdout server event source: %m");
                 return r;
         }