Commit 119d022c authored by Rainer Jung's avatar Rainer Jung
Browse files

Fix typo in comment (s/patterm/pattern/).

Backport of r1726086 from trunk
resp. r1726087 from 2.4.x.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1726089 13f79535-47bb-0310-9956-ffa450edef68
parent d70e6db9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1619,7 +1619,7 @@ AP_DECLARE(int) ap_os_is_path_absolute(apr_pool_t *p, const char *dir);
AP_DECLARE(int) ap_is_matchexp(const char *str);

/**
 * Determine if a string matches a patterm containing the wildcards '?' or '*'
 * Determine if a string matches a pattern containing the wildcards '?' or '*'
 * @param str The string to check
 * @param expected The pattern to match against
 * @return 1 if the two strings match, 0 otherwise
@@ -1627,7 +1627,7 @@ AP_DECLARE(int) ap_is_matchexp(const char *str);
AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected);

/**
 * Determine if a string matches a patterm containing the wildcards '?' or '*',
 * Determine if a string matches a pattern containing the wildcards '?' or '*',
 * ignoring case
 * @param str The string to check
 * @param expected The pattern to match against