summaryrefslogtreecommitdiff
path: root/pop3d/pop3d.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-11-08 09:44:41 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-11-08 09:44:41 +0000
commitd9df9334796980ee28efb74a172c9e7abfa029d9 (patch)
tree90c81359b8e86e2b56a4c8d262cda6d1b3e9c4ba /pop3d/pop3d.c
parenta55accd41940bb013c7963f8ab2a8480d76f828d (diff)
downloadmailutils-d9df9334796980ee28efb74a172c9e7abfa029d9.tar.gz
mailutils-d9df9334796980ee28efb74a172c9e7abfa029d9.tar.bz2
(cb_bulletin_db): Fix typo
(pop3d_cfg_param): Protect some variables by ifdefs.
Diffstat (limited to 'pop3d/pop3d.c')
-rw-r--r--pop3d/pop3d.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/pop3d/pop3d.c b/pop3d/pop3d.c
index 0e72efb83..6846f85b8 100644
--- a/pop3d/pop3d.c
+++ b/pop3d/pop3d.c
@@ -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 }
};

Return to:

Send suggestions and report system problems to the System administrator.