21 lines
606 B
Diff
21 lines
606 B
Diff
--- hosts_access.c
|
|
+++ hosts_access.c
|
|
@@ -146,7 +146,7 @@
|
|
verdict = setjmp(tcpd_buf);
|
|
if (verdict != 0)
|
|
return (verdict == AC_PERMIT);
|
|
- if (table_match(hosts_allow_table, request))
|
|
+ if (table_match(hosts_allow_table, request) == YES)
|
|
return (YES);
|
|
if (table_match(hosts_deny_table, request))
|
|
return (NO);
|
|
@@ -195,7 +195,7 @@
|
|
} else if (errno != ENOENT) {
|
|
tcpd_warn("cannot open %s: %m", table);
|
|
}
|
|
- if (match) {
|
|
+ if (match == YES) {
|
|
if (hosts_access_verbose > 1)
|
|
syslog(LOG_DEBUG, "matched: %s line %d",
|
|
tcpd_context.file, tcpd_context.line);
|