Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
83cbcd7f
...
83cbcd7f2e9f9abc4e7102fa649e6a5873b34cc4
authored
2003-07-26 11:09:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_auth_runlist,mu_auth_nosupport): Changed type of the first argument.
1 parent
23793af0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
mailbox/mu_auth.c
mailbox/mu_auth.c
View file @
83cbcd7
...
...
@@ -121,7 +121,8 @@ mu_insert_stack_entry (list_t *pflist, struct auth_stack_entry *entry)
}
int
mu_auth_runlist
(
list_t
flist
,
void
*
return_data
,
void
*
key
,
void
*
data
)
mu_auth_runlist
(
list_t
flist
,
struct
mu_auth_data
**
return_data
,
void
*
key
,
void
*
data
)
{
int
rc
=
1
;
iterator_t
itr
;
...
...
@@ -145,8 +146,10 @@ mu_auth_runlist (list_t flist, void *return_data, void *key, void *data)
}
int
mu_auth_nosupport
(
void
*
usused_return_data
,
void
*
unused_key
,
void
*
unused_func_data
,
void
*
unused_call_data
)
mu_auth_nosupport
(
struct
mu_auth_data
**
return_data
ARG_UNUSED
,
void
*
key
ARG_UNUSED
,
void
*
func_data
ARG_UNUSED
,
void
*
call_data
ARG_UNUSED
)
{
errno
=
ENOSYS
;
return
1
;
...
...
Please
register
or
sign in
to post a comment