diff options
author | Roy T. Fielding <fielding@apache.org> | 2004-10-24 00:39:53 +0200 |
---|---|---|
committer | Roy T. Fielding <fielding@apache.org> | 2004-10-24 00:39:53 +0200 |
commit | c76dd4ecefc5c521a70c2a26f3aa52eb85472961 (patch) | |
tree | 49cc4f5a98d022b0655c918ce8b093c22cf6d3db /include/httpd.h | |
parent | mod_cache: Add CacheIgnoreHeaders directive. (diff) | |
download | apache2-c76dd4ecefc5c521a70c2a26f3aa52eb85472961.tar.xz apache2-c76dd4ecefc5c521a70c2a26f3aa52eb85472961.zip |
veto and revert win64 patch: 64bit changes must percolate from the
bottom (APR/system) up -- we can't give the client a 64bit API and
then cast it to 32bits internally without introducing security holes
on other platforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105572 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-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 1d2cc0e63b..8ff392bf8f 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1091,7 +1091,7 @@ struct server_rec { /** Pathname for ServerPath */ const char *path; /** Length of path */ - apr_size_t pathlen; + int pathlen; /** Normal names for ServerAlias servers */ apr_array_header_t *names; @@ -1244,7 +1244,7 @@ AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word); * address of field is shifted to the next non-comma, non-whitespace * character. len is the length of the item excluding any beginning whitespace. */ -AP_DECLARE(const char *) ap_size_list_item(const char **field, apr_size_t *len); +AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len); /** * Retrieve an HTTP header field list item, as separated by a comma, @@ -1587,7 +1587,7 @@ AP_DECLARE(void) ap_str_tolower(char *s); * @param c The character to search for * @return The index of the first occurrence of c in str */ -AP_DECLARE(apr_ssize_t) ap_ind(const char *str, char c); /* Sigh... */ +AP_DECLARE(int) ap_ind(const char *str, char c); /* Sigh... */ /** * Search a string from right to left for the first occurrence of a @@ -1596,7 +1596,7 @@ AP_DECLARE(apr_ssize_t) ap_ind(const char *str, char c); /* Sigh... */ * @param c The character to search for * @return The index of the first occurrence of c in str */ -AP_DECLARE(apr_ssize_t) ap_rind(const char *str, char c); +AP_DECLARE(int) ap_rind(const char *str, char c); /** * Given a string, replace any bare " with \" . |