summaryrefslogtreecommitdiff
path: root/include/util_script.h
diff options
context:
space:
mode:
authorRoy T. Fielding <fielding@apache.org>2004-10-23 22:39:53 +0000
committerRoy T. Fielding <fielding@apache.org>2004-10-23 22:39:53 +0000
commitc76dd4ecefc5c521a70c2a26f3aa52eb85472961 (patch)
tree49cc4f5a98d022b0655c918ce8b093c22cf6d3db /include/util_script.h
parent41ee74561cd41dff407b519c1f63975bcc3f42f0 (diff)
downloadhttpd-c76dd4ecefc5c521a70c2a26f3aa52eb85472961.tar.gz
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/util_script.h')
-rw-r--r--include/util_script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/util_script.h b/include/util_script.h
index ece07a04f2..bdffb2b221 100644
--- a/include/util_script.h
+++ b/include/util_script.h
@@ -53,7 +53,7 @@ AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t);
* @return The length of the path info
* @deffunc int ap_find_path_info(const char *uri, const char *path_info)
*/
-AP_DECLARE(apr_size_t) ap_find_path_info(const char *uri, const char *path_info);
+AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info);
/**
* Add CGI environment variables required by HTTP/1.1 to the request's
@@ -131,7 +131,7 @@ AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
* @deffunc int ap_scan_script_header_err_core(request_rec *r, char *buffer, int (*getsfunc)(char *, int, void *), void *getsfunc_data)
*/
AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
- int (*getsfunc) (char *, apr_size_t, void *),
+ int (*getsfunc) (char *, int, void *),
void *getsfunc_data);
#ifdef __cplusplus