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
628b8bb1
...
628b8bb1b83cc0861c7626f48d2da3077ccbfc4d
authored
2007-11-05 09:14:48 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(MU_AUTH_REGISTER_ALL_MODULES): Call mu_auth_init first.
1 parent
607753a2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
include/mailutils/mu_auth.h
include/mailutils/mu_auth.h
View file @
628b8bb
...
...
@@ -62,6 +62,7 @@ struct mu_auth_module
{
char
*
name
;
struct
argp
*
argp
;
struct
mu_cfg_param
*
cfg
;
mu_auth_fp
authenticate
;
void
*
authenticate_data
;
mu_auth_fp
auth_by_name
;
...
...
@@ -127,12 +128,13 @@ extern struct mu_auth_module mu_auth_virtual_module;
extern
struct
mu_auth_module
mu_auth_radius_module
;
#define MU_AUTH_REGISTER_ALL_MODULES() do {\
mu_auth_init (); \
mu_auth_register_module (&mu_auth_generic_module); \
mu_auth_register_module (&mu_auth_system_module); \
mu_auth_register_module (&mu_auth_pam_module);\
mu_auth_register_module (&mu_auth_sql_module);\
mu_auth_register_module (&mu_auth_virtual_module);\
mu_auth_register_module (&mu_auth_radius_module);\
mu_auth_init ();
} while (0)
} while (0)
#endif
...
...
Please
register
or
sign in
to post a comment