- Includes typo fixes in documentation. Closes: #623520
* Fall back to the init script reload function if a native .service file
doesn't know how to reload. Closes: #628186
- * Ignore unknown capabilities when dropping them. Closes: #628081
* Add hard dependency on udev. Closes: #627921
[ Michael Biebl ]
for (i = 0; i <= CAP_LAST_CAP; i++)
if (drop & ((uint64_t) 1ULL << (uint64_t) i)) {
if (prctl(PR_CAPBSET_DROP, i) < 0) {
-
- /* If this capability is not known,
- * EINVAL will be returned, let's
- * ignore this. */
- if (errno == EINVAL)
- continue;
-
r = -errno;
goto finish;
}