diff options
author | Roy T. Fielding <fielding@apache.org> | 2001-05-22 03:31:12 +0200 |
---|---|---|
committer | Roy T. Fielding <fielding@apache.org> | 2001-05-22 03:31:12 +0200 |
commit | 43b9634ceb1cd0512189fff88b95380ea12064f6 (patch) | |
tree | a71442c47f0a4773f67c651d6cd8e13353d6ea81 /server/scoreboard.c | |
parent | Ring in the CHANGES... (diff) | |
download | apache2-43b9634ceb1cd0512189fff88b95380ea12064f6.tar.xz apache2-43b9634ceb1cd0512189fff88b95380ea12064f6.zip |
Moved util_uri to apr-util/uri/apr_uri, which means adding the apr_
prefix to all of the uri functions (yuck), changing some includes,
and using APR error codes instead of HTTP-specific error codes.
Other notes to test this patch:
- You need to delete the util_uri.h file - exports picks up on this.
- I'd like to remove the apr_uri.h from httpd.h, but that might
increase the complexity of this patch even further. Once this patch
is accepted (in some form), then I can focus on removing apr_uri.h
from httpd.h entirely. I need baby steps (heh) right now.
- I imagine that this might break a bunch of stuff in Win32 or other OS
builds with foreign dependency files. Any help here is appreciated.
This is a start... -- justin
Submitted by: Justin Erenkrantz
Reviewed by: Roy Fielding
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89198 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/scoreboard.c')
-rw-r--r-- | server/scoreboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c index 9052723d76..265bf23a90 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -310,7 +310,7 @@ int ap_update_child_status(int child_num, int thread_num, int status, request_re } else { /* Don't reveal the password in the server-status view */ apr_cpystrn(ws->request, apr_pstrcat(r->pool, r->method, " ", - ap_unparse_uri_components(r->pool, &r->parsed_uri, UNP_OMITPASSWORD), + apr_uri_unparse_components(r->pool, &r->parsed_uri, UNP_OMITPASSWORD), r->assbackwards ? NULL : " ", r->protocol, NULL), sizeof(ws->request)); } |