22 lines
848 B
Diff
22 lines
848 B
Diff
diff -up tcp_wrappers_7.6/hosts_access.c.patch15 tcp_wrappers_7.6/hosts_access.c
|
|
--- tcp_wrappers_7.6/hosts_access.c.patch15 2008-08-29 09:45:12.000000000 +0200
|
|
+++ tcp_wrappers_7.6/hosts_access.c 2008-08-29 09:45:12.000000000 +0200
|
|
@@ -127,7 +127,7 @@ struct request_info *request;
|
|
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) == NO)
|
|
return (YES);
|
|
@@ -177,7 +177,7 @@ struct request_info *request;
|
|
tcpd_warn("cannot open %s: %m", table);
|
|
match = ERR;
|
|
}
|
|
- if (match) {
|
|
+ if (match == YES) {
|
|
if (hosts_access_verbose > 1)
|
|
syslog(LOG_DEBUG, "matched: %s line %d",
|
|
tcpd_context.file, tcpd_context.line);
|