Skip to content

Commit

Permalink
Fix type mismatch in db2_exp.c
Browse files Browse the repository at this point in the history
The locking wrapper for audit_as_req used the wrong function
signature, which was harmless but produced a couple of warnings.  Fix
it.
  • Loading branch information
greghudson committed May 10, 2013
1 parent 962e70a commit 1e8ec64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/kdb/db2/db2_exp.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ WRAP_K (krb5_db2_promote_db,
WRAP_K (krb5_db2_check_policy_as,
(krb5_context kcontext, krb5_kdc_req *request, krb5_db_entry *client,
krb5_db_entry *server, krb5_timestamp kdc_time, const char **status,
krb5_data *e_data),
krb5_pa_data ***e_data),
(kcontext, request, client, server, kdc_time, status, e_data));

WRAP_VOID (krb5_db2_audit_as_req,
Expand Down

0 comments on commit 1e8ec64

Please sign in to comment.