Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/lib/audit.c

    r740 r988  
    2222
    2323static const struct audit_category_tab {
    24         uint32 category;
     24        uint32_t category;
    2525        const char *category_str;
    2626        const char *param_str;
     
    5757};
    5858
    59 const char *audit_category_str(uint32 category)
     59const char *audit_category_str(uint32_t category)
    6060{
    6161        int i;
     
    6868}
    6969
    70 const char *audit_param_str(uint32 category)
     70const char *audit_param_str(uint32_t category)
    7171{
    7272        int i;
     
    7979}
    8080
    81 const char *audit_description_str(uint32 category)
     81const char *audit_description_str(uint32_t category)
    8282{
    8383        int i;
     
    9090}
    9191
    92 bool get_audit_category_from_param(const char *param, uint32 *audit_category)
     92bool get_audit_category_from_param(const char *param, uint32_t *audit_category)
    9393{
    9494        *audit_category = Undefined;
     
    120120}
    121121
    122 const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32 policy)
     122const char *audit_policy_str(TALLOC_CTX *mem_ctx, uint32_t policy)
    123123{
    124124        const char *ret = NULL;
Note: See TracChangeset for help on using the changeset viewer.