]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
capability: add missing ')'
authorLennart Poettering <lennart@poettering.net>
Thu, 21 Mar 2019 11:29:18 +0000 (12:29 +0100)
committerLennart Poettering <lennart@poettering.net>
Thu, 21 Mar 2019 11:29:18 +0000 (12:29 +0100)
As pointed out by @polarina

https://github.com/systemd/systemd/commit/d0b6a10c005ab1fff44d032be995e3f2bcfba225#commitcomment-32857641

src/basic/capability-util.c

index 45fadb9faa9a2216abeb99773b0e5bca58526e30..aca861e5eee566f43f1e2637ee6b645f1a039c93 100644 (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;