summaryrefslogtreecommitdiff
path: root/warnquota.c
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2007-08-22 13:03:24 +0000
committerjkar8572 <jkar8572>2007-08-22 13:03:24 +0000
commit464de49af48dbc838bef288abe34805964b60125 (patch)
tree05bc7e37d922cd6a328e2c16138b3c19bfb07eaa /warnquota.c
parent6c1c1f4546b2b12c1ad4549ebc55f39ecabf8646 (diff)
downloadlinuxquota-464de49af48dbc838bef288abe34805964b60125.tar.gz
Cleaned up host access handling in rpc.rquotad (Jan Kara)
Added allow_severity and deny_severity variables for older versions of libwrap (Martin Jacobs) Added MPFS to the list of supported filesystems (Dave Boone) Configure script now correctly reports checking of libwrap (Jan Kara)
Diffstat (limited to 'warnquota.c')
-rw-r--r--warnquota.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/warnquota.c b/warnquota.c
index d178791..1456da7 100644
--- a/warnquota.c
+++ b/warnquota.c
@@ -10,7 +10,7 @@
*
* Author: Marco van Wieringen <mvw@planets.elm.net>
*
- * Version: $Id: warnquota.c,v 1.28 2007/05/29 14:17:56 jkar8572 Exp $
+ * Version: $Id: warnquota.c,v 1.29 2007/08/22 13:03:24 jkar8572 Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -842,15 +842,18 @@ cc_parse_err:
if (bufpos)
errstr(_("Unterminated last line, ignoring\n"));
#ifdef USE_LDAP_MAIL_LOOKUP
+ if (config->use_ldap_mail)
+ {
#ifdef USE_LDAP_23
- if (!config->ldap_uri[0]) {
- snprintf(config->ldap_uri, CNF_BUFFER, "ldap://%s:%d", config->ldap_host, config->ldap_port);
- errstr(_("LDAP library version >= 2.3 detected. Please use LDAP_URI instead of hostname and port.\nGenerated URI %s\n"), config->ldap_uri);
- }
+ if (!config->ldap_uri[0]) {
+ snprintf(config->ldap_uri, CNF_BUFFER, "ldap://%s:%d", config->ldap_host, config->ldap_port);
+ errstr(_("LDAP library version >= 2.3 detected. Please use LDAP_URI instead of hostname and port.\nGenerated URI %s\n"), config->ldap_uri);
+ }
#else
- if (config->ldap_uri[0])
- die(1, _("LDAP library does not support ldap_initialize() but URI is specified."));
+ if (config->ldap_uri[0])
+ die(1, _("LDAP library does not support ldap_initialize() but URI is specified."));
#endif
+ }
#endif
fclose(fp);