(mu_auth_runlist,mu_auth_nosupport): Changed type of the first argument.
Showing
1 changed file
with
6 additions
and
3 deletions
... | @@ -121,7 +121,8 @@ mu_insert_stack_entry (list_t *pflist, struct auth_stack_entry *entry) | ... | @@ -121,7 +121,8 @@ mu_insert_stack_entry (list_t *pflist, struct auth_stack_entry *entry) |
121 | } | 121 | } |
122 | 122 | ||
123 | int | 123 | int |
124 | mu_auth_runlist (list_t flist, void *return_data, void *key, void *data) | 124 | mu_auth_runlist (list_t flist, struct mu_auth_data **return_data, |
125 | void *key, void *data) | ||
125 | { | 126 | { |
126 | int rc = 1; | 127 | int rc = 1; |
127 | iterator_t itr; | 128 | iterator_t itr; |
... | @@ -145,8 +146,10 @@ mu_auth_runlist (list_t flist, void *return_data, void *key, void *data) | ... | @@ -145,8 +146,10 @@ mu_auth_runlist (list_t flist, void *return_data, void *key, void *data) |
145 | } | 146 | } |
146 | 147 | ||
147 | int | 148 | int |
148 | mu_auth_nosupport (void *usused_return_data, void *unused_key, | 149 | mu_auth_nosupport (struct mu_auth_data **return_data ARG_UNUSED, |
149 | void *unused_func_data, void *unused_call_data) | 150 | void *key ARG_UNUSED, |
151 | void *func_data ARG_UNUSED, | ||
152 | void *call_data ARG_UNUSED) | ||
150 | { | 153 | { |
151 | errno = ENOSYS; | 154 | errno = ENOSYS; |
152 | return 1; | 155 | return 1; | ... | ... |
-
Please register or sign in to post a comment