1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-24 02:03:54 +03:00

capability: add missing ')'

As pointed out by @polarina

d0b6a10c00 (commitcomment-32857641)
This commit is contained in:
Lennart Poettering 2019-03-21 12:29:18 +01:00
parent d0b6a10c00
commit d09a25855f

View File

@ -50,7 +50,7 @@ unsigned long cap_last_cap(void) {
if (p > 63) /* Safety for the future: if one day the kernel learns more than 64 caps,
* then we are in trouble (since we, as much userspace and kernel space
* store capability masks in uint64_t types. Let's hence protect
* store capability masks in uint64_t types). Let's hence protect
* ourselves against that and always cap at 63 for now. */
p = 63;