1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Further clarify the naming of the entity that originates the request by

calling that entity a useragent instead of a client.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1214003 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2011-12-14 00:31:51 +00:00
parent a4e7bcc4d4
commit 2af2fa44ad
15 changed files with 35 additions and 35 deletions

View File

@@ -439,8 +439,8 @@ static request_rec *internal_internal_redirect(const char *new_uri,
new->prev = r;
r->next = new;
new->client_addr = r->client_addr;
new->client_ip = r->client_ip;
new->useragent_addr = r->useragent_addr;
new->useragent_ip = r->useragent_ip;
/* Must have prev and next pointers set before calling create_request
* hook.