diff options
author | Greg Stein <gstein@apache.org> | 2003-06-17 11:45:57 +0200 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2003-06-17 11:45:57 +0200 |
commit | 72c0032db6bd37e8b6fe7a508d0bbdf52650749f (patch) | |
tree | 6a8d827d0c1815cdc1f2f0b0e40e9c98008c3ed8 /include | |
parent | LaTeX: (diff) | |
download | apache2-72c0032db6bd37e8b6fe7a508d0bbdf52650749f.tar.xz apache2-72c0032db6bd37e8b6fe7a508d0bbdf52650749f.zip |
Use 'expected' rather than 'exp', as the latter shadows the exp()
function in the math.h header. Some compilers don't like that.
Submitted by: Blair Zajac <blair@orcaware.com>
Reviewed by: rbb@rkbloom.net
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100279 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/httpd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/httpd.h b/include/httpd.h index 256b3fc1c3..f71373e0c0 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1450,18 +1450,18 @@ AP_DECLARE(int) ap_is_matchexp(const char *str); /** * Determine if a string matches a patterm containing the wildcards '?' or '*' * @param str The string to check - * @param exp The pattern to match against + * @param expected The pattern to match against * @return 1 if the two strings match, 0 otherwise */ -AP_DECLARE(int) ap_strcmp_match(const char *str, const char *exp); +AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected); /** * Determine if a string matches a patterm containing the wildcards '?' or '*', * ignoring case * @param str The string to check - * @param exp The pattern to match against + * @param expected The pattern to match against * @return 1 if the two strings match, 0 otherwise */ -AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *exp); +AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected); /** * Find the first occurrence of the substring s2 in s1, regardless of case |