Changeset 988 for vendor/current/source3/lib/audit.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/audit.c
r740 r988 22 22 23 23 static const struct audit_category_tab { 24 uint32 category;24 uint32_t category; 25 25 const char *category_str; 26 26 const char *param_str; … … 57 57 }; 58 58 59 const char *audit_category_str(uint32 category)59 const char *audit_category_str(uint32_t category) 60 60 { 61 61 int i; … … 68 68 } 69 69 70 const char *audit_param_str(uint32 category)70 const char *audit_param_str(uint32_t category) 71 71 { 72 72 int i; … … 79 79 } 80 80 81 const char *audit_description_str(uint32 category)81 const char *audit_description_str(uint32_t category) 82 82 { 83 83 int i; … … 90 90 } 91 91 92 bool get_audit_category_from_param(const char *param, uint32 *audit_category)92 bool get_audit_category_from_param(const char *param, uint32_t *audit_category) 93 93 { 94 94 *audit_category = Undefined; … … 120 120 } 121 121 122 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy)122 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32_t policy) 123 123 { 124 124 const char *ret = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.