diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-21 06:23:02 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-21 06:23:02 +0000 |
commit | cee46192508384fc145cc3930645b6fa1746ca3b (patch) | |
tree | 6cb54ac6b54d5c70cfcfeb6fc4951ee865bcc7a9 /websvcs/lib | |
parent | 89d2dbcae326625ee75b7ad54e46ff6cb54cc121 (diff) | |
download | ATCD-cee46192508384fc145cc3930645b6fa1746ca3b.tar.gz |
fixed bug with create_relative-addr and names beginning with "\"
Diffstat (limited to 'websvcs/lib')
-rw-r--r-- | websvcs/lib/URL_Addr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/websvcs/lib/URL_Addr.cpp b/websvcs/lib/URL_Addr.cpp index a842a7d1059..23de49c704b 100644 --- a/websvcs/lib/URL_Addr.cpp +++ b/websvcs/lib/URL_Addr.cpp @@ -360,7 +360,7 @@ ACE_HTTP_Addr::create_relative_address (LPCTSTR url) const if (url[0] == '/') { ACE_NEW_RETURN (addr, ACE_HTTP_Addr (this->get_hostname (), - url, + url + 1, 0, this->get_port_number ()), 0); |