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
d9df9334
...
d9df9334796980ee28efb74a172c9e7abfa029d9
authored
2007-11-08 09:44:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(cb_bulletin_db): Fix typo
(pop3d_cfg_param): Protect some variables by ifdefs.
1 parent
a55accd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
pop3d/pop3d.c
pop3d/pop3d.c
View file @
d9df933
...
...
@@ -127,7 +127,7 @@ cb_bulletin_source (mu_cfg_locus_t *locus, void *data, char *arg)
static
int
cb_bulletin_db
(
mu_cfg_locus_t
*
locus
,
void
*
data
,
char
*
arg
)
{
set_bulletin_
source
(
arg
);
set_bulletin_
db
(
arg
);
return
0
;
}
...
...
@@ -138,10 +138,14 @@ static struct mu_cfg_param pop3d_cfg_param[] = {
#ifdef WITH_TLS
{
"tls-required"
,
mu_cfg_callback
,
NULL
,
cb_tls_expired
},
#endif
#ifdef ENABLE_LOGIN_DELAY
{
"login-delay"
,
mu_cfg_time
,
&
login_delay
},
{
"stat-file"
,
mu_cfg_string
,
&
login_stat_file
},
#endif
{
"bulletin-source"
,
mu_cfg_callback
,
NULL
,
cb_bulletin_source
},
#ifdef USE_DBM
{
"bulletin-db"
,
mu_cfg_callback
,
NULL
,
cb_bulletin_db
},
#endif
{
NULL
}
};
...
...
Please
register
or
sign in
to post a comment