1
0
mirror of https://github.com/systemd/systemd synced 2025-11-19 08:44:44 +01:00

Compare commits

..

No commits in common. "28e62e684b631f928f1d857b04f45f0d34441675" and "00a5c447a4d33bcab21ed19d25788d4b4325ea28" have entirely different histories.

4 changed files with 5 additions and 4 deletions

View File

@ -9,6 +9,7 @@ PrepareScripts=systemd.prepare
VolatilePackages= VolatilePackages=
systemd systemd
systemd-container systemd-container
systemd-devel
systemd-journal-remote systemd-journal-remote
systemd-libs systemd-libs
systemd-networkd systemd-networkd

View File

@ -12,8 +12,10 @@ VolatilePackages=
libnss-resolve libnss-resolve
libnss-systemd libnss-systemd
libpam-systemd libpam-systemd
libsystemd-dev
libsystemd-shared libsystemd-shared
libsystemd0 libsystemd0
libudev-dev
systemd systemd
systemd-container systemd-container
systemd-coredump systemd-coredump

View File

@ -17,6 +17,7 @@ VolatilePackages=
libudev1 libudev1
systemd systemd
systemd-container systemd-container
systemd-devel
systemd-doc systemd-doc
systemd-experimental systemd-experimental
systemd-homed systemd-homed
@ -70,7 +71,6 @@ Packages=
pam pam
patterns-base-minimal_base patterns-base-minimal_base
perf perf
policycoreutils
pkgconf pkgconf
procps4 procps4
psmisc psmisc
@ -81,8 +81,6 @@ Packages=
quota quota
rsync rsync
sed sed
selinux-policy
selinux-policy-targeted
shadow shadow
softhsm softhsm
squashfs squashfs

View File

@ -45,7 +45,7 @@ int coredump_send(const struct iovec_wrapper *iovw, int input_fd, PidRef *pidref
if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0) if (sendmsg(fd, &mh, MSG_NOSIGNAL) >= 0)
break; break;
if (IN_SET(errno, EMSGSIZE, ENOBUFS) && mh.msg_iov[0].iov_len > 0) { if (errno == EMSGSIZE && mh.msg_iov[0].iov_len > 0) {
/* This field didn't fit? That's a pity. Given that this is /* This field didn't fit? That's a pity. Given that this is
* just metadata, let's truncate the field at half, and try * just metadata, let's truncate the field at half, and try
* again. We append three dots, in order to show that this is * again. We append three dots, in order to show that this is