| 175 | } |
| 176 | |
| 177 | void |
| 178 | audit_arg_uid(uid_t uid) |
| 179 | { |
| 180 | struct kaudit_record *ar; |
| 181 | |
| 182 | ar = currecord(); |
| 183 | if (ar == NULL) |
| 184 | return; |
| 185 | |
| 186 | ar->k_ar.ar_arg_uid = uid; |
| 187 | ARG_SET_VALID(ar, ARG_UID); |
| 188 | } |
| 189 | |
| 190 | void |
| 191 | audit_arg_egid(gid_t egid) |
nothing calls this directly
no test coverage detected