diff options
author | Shawn Landden <shawnlandden@gmail.com> | 2013-07-15 18:10:56 -0700 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-16 04:27:04 +0200 |
commit | 3a83211689bdf4ab617a4fb79e11980c50918123 (patch) | |
tree | e01b35ef57b7fb48ee3acd7ced3cdb9dc9498848 /src/shared/util.h | |
parent | fa7deadb074dfbe473cf3bd942768dbd94cbf7c3 (diff) |
journal: add logging of effective capabilities _CAP_EFFECTIVE
I think this is the most important of the capabilities bitmasks to log.
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index ddb21b4a9c..fac08ca43c 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -210,6 +210,7 @@ int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char * int get_process_exe(pid_t pid, char **name); int get_process_uid(pid_t pid, uid_t *uid); int get_process_gid(pid_t pid, gid_t *gid); +int get_process_capeff(pid_t pid, char **capeff); char hexchar(int x) _const_; int unhexchar(char c) _const_; |