summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'match.h')
-rw-r--r--match.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/match.h b/match.h
index 4625d9769..8eac0a502 100644
--- a/match.h
+++ b/match.h
@@ -10,8 +10,8 @@ int match_pattern(const char *s, const char *pattern);
10/* 10/*
11 * Tries to match the host name (which must be in all lowercase) against the 11 * Tries to match the host name (which must be in all lowercase) against the
12 * comma-separated sequence of subpatterns (each possibly preceded by ! to 12 * comma-separated sequence of subpatterns (each possibly preceded by ! to
13 * indicate negation). Returns true if there is a positive match; zero 13 * indicate negation). Returns -1 if negation matches, 1 if there is
14 * otherwise. 14 * a positive match, 0 if there is no match at all.
15 */ 15 */
16int match_hostname(const char *host, const char *pattern, unsigned int len); 16int match_hostname(const char *host, const char *pattern, unsigned int len);
17 17