summaryrefslogtreecommitdiff
path: root/uri/apr_uri.c
diff options
context:
space:
mode:
Diffstat (limited to 'uri/apr_uri.c')
-rw-r--r--uri/apr_uri.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/uri/apr_uri.c b/uri/apr_uri.c
index e5acb3467..5f16c664b 100644
--- a/uri/apr_uri.c
+++ b/uri/apr_uri.c
@@ -70,7 +70,7 @@ static schemes_t schemes[] =
{ NULL, 0xFFFF } /* unknown port */
};
-APU_DECLARE(apr_port_t) apr_uri_port_of_scheme(const char *scheme_str)
+APR_DECLARE(apr_port_t) apr_uri_port_of_scheme(const char *scheme_str)
{
schemes_t *scheme;
@@ -87,7 +87,7 @@ APU_DECLARE(apr_port_t) apr_uri_port_of_scheme(const char *scheme_str)
/* Unparse a apr_uri_t structure to an URI string.
* Optionally suppress the password for security reasons.
*/
-APU_DECLARE(char *) apr_uri_unparse(apr_pool_t *p,
+APR_DECLARE(char *) apr_uri_unparse(apr_pool_t *p,
const apr_uri_t *uptr,
unsigned flags)
{
@@ -240,7 +240,7 @@ static const unsigned char uri_delims[256] = {
* - fills in fields of uri_components *uptr
* - none on any of the r->* fields
*/
-APU_DECLARE(apr_status_t) apr_uri_parse(apr_pool_t *p, const char *uri,
+APR_DECLARE(apr_status_t) apr_uri_parse(apr_pool_t *p, const char *uri,
apr_uri_t *uptr)
{
const char *s;
@@ -405,7 +405,7 @@ deal_with_host:
* currently at http://www.mcom.com/newsref/std/tunneling_ssl.html
* for the format of the "CONNECT host:port HTTP/1.0" request
*/
-APU_DECLARE(apr_status_t) apr_uri_parse_hostinfo(apr_pool_t *p,
+APR_DECLARE(apr_status_t) apr_uri_parse_hostinfo(apr_pool_t *p,
const char *hostinfo,
apr_uri_t *uptr)
{