aboutsummaryrefslogtreecommitdiff
path: root/src/tcpwrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tcpwrap.c')
-rw-r--r--src/tcpwrap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tcpwrap.c b/src/tcpwrap.c
index 8ece4c8..3c29f31 100644
--- a/src/tcpwrap.c
+++ b/src/tcpwrap.c
@@ -44,24 +44,24 @@ cb_syslog_priority (enum grecs_callback_command cmd,
struct grecs_keyword tcpwrapper_kw[] = {
{ "enable", NULL,
N_("Enable TCP wrapper access control. Default is \"yes\"."),
- grecs_type_bool, &tcpwrap_enable },
+ grecs_type_bool, GRECS_DFLT, &tcpwrap_enable },
{ "daemon", N_("name"),
N_("Set daemon name for TCP wrapper lookups. Default is program name."),
- grecs_type_string, &tcpwrap_daemon },
+ grecs_type_string, GRECS_DFLT, &tcpwrap_daemon },
{ "allow-table", N_("file"),
N_("Use file for positive client address access control "
"(default: /etc/hosts.allow)."),
- grecs_type_string, &hosts_allow_table },
+ grecs_type_string, GRECS_DFLT, &hosts_allow_table },
{ "deny-table", N_("file"),
N_("Use file for negative client address access control "
"(default: /etc/hosts.deny)."),
- grecs_type_string, &hosts_deny_table },
+ grecs_type_string, GRECS_DFLT, &hosts_deny_table },
{ "allow-syslog-priority", N_("prio"),
N_("Log host allows at this syslog priority."),
- grecs_type_string, &allow_severity, 0, cb_syslog_priority },
+ grecs_type_string, GRECS_DFLT, &allow_severity, 0, cb_syslog_priority },
{ "deny-syslog-priority", N_("prio"),
N_("Log host denies at this syslog priority."),
- grecs_type_string, &deny_severity, 0, cb_syslog_priority },
+ grecs_type_string, GRECS_DFLT, &deny_severity, 0, cb_syslog_priority },
{ NULL }
};

Return to:

Send suggestions and report system problems to the System administrator.