1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-08 11:27:32 +03:00

core: small error message wording improvements

This commit is contained in:
Lennart Poettering 2015-09-23 19:51:45 +02:00
parent 97792515b4
commit ed460b077a

View File

@ -955,12 +955,12 @@ static void socket_apply_fifo_options(Socket *s, int fd) {
if (s->pipe_size > 0)
if (fcntl(fd, F_SETPIPE_SZ, s->pipe_size) < 0)
log_unit_warning_errno(UNIT(s), errno, "F_SETPIPE_SZ: %m");
log_unit_warning_errno(UNIT(s), errno, "Setting pipe size failed, ignoring: %m");
if (s->smack) {
r = mac_smack_apply_fd(fd, SMACK_ATTR_ACCESS, s->smack);
if (r < 0)
log_unit_error_errno(UNIT(s), r, "mac_smack_apply_fd: %m");
log_unit_error_errno(UNIT(s), r, "SMACK relabelling failed, ignoring: %m");
}
}