From: Lennart Poettering Date: Thu, 21 Mar 2019 11:29:18 +0000 (+0100) Subject: capability: add missing ')' X-Git-Tag: v242-rc1~97^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d09a25855f9dba60d555b9044e8e91783ab966c5;p=thirdparty%2Fsystemd.git capability: add missing ')' As pointed out by @polarina https://github.com/systemd/systemd/commit/d0b6a10c005ab1fff44d032be995e3f2bcfba225#commitcomment-32857641 --- diff --git a/src/basic/capability-util.c b/src/basic/capability-util.c index 45fadb9faa9..aca861e5eee 100644 --- a/src/basic/capability-util.c +++ b/src/basic/capability-util.c @@ -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;