diff options
Diffstat (limited to 'ACE/protocols/ace/INet/FTP_URL.cpp')
-rw-r--r-- | ACE/protocols/ace/INet/FTP_URL.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/protocols/ace/INet/FTP_URL.cpp b/ACE/protocols/ace/INet/FTP_URL.cpp index b6a8118a2d0..fa2cadbb20e 100644 --- a/ACE/protocols/ace/INet/FTP_URL.cpp +++ b/ACE/protocols/ace/INet/FTP_URL.cpp @@ -24,18 +24,18 @@ namespace ACE } URL::URL () - : URL_INetAuthBase (FTP_PORT) + : ACE::INet::URL_INetAuthBase (FTP_PORT) { } URL::URL (const ACE_CString& url_string) - : URL_INetAuthBase (FTP_PORT) + : ACE::INet::URL_INetAuthBase (FTP_PORT) { this->parse (url_string); } URL::URL (const URL& url) - : URL_INetAuthBase (0) + : ACE::INet::URL_INetAuthBase (0) { *this = url; } |