函数源码 |
Source File:security\apparmor\lsm.c |
Create Date:2022-07-27 21:37:13 |
首页 | Copyright©Brick |
90 91 92 93 94 95 96 | /* * transfer the apparmor data to a blank set of creds */ static void apparmor_cred_transfer( struct cred * new , const struct cred *old) { set_cred_label( new , aa_get_newest_label(cred_label(old))); } |