diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ftp/ftpurl.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ucb/source/ucp/ftp/ftpurl.cxx b/ucb/source/ucp/ftp/ftpurl.cxx index 9840fa4d2a0c..13b5ae89b4ff 100644 --- a/ucb/source/ucp/ftp/ftpurl.cxx +++ b/ucb/source/ucp/ftp/ftpurl.cxx @@ -398,20 +398,6 @@ namespace ftp { CURLOPT_URL, \ urlParAscii.getStr()); - // Setting username:password -#define SET_USER_PASSWORD(username,password) \ - rtl::OUString combi(username + \ - rtl::OUString(":") + \ - password); \ - rtl::OString aUserPsswd(combi.getStr(), \ - combi.getLength(), \ - RTL_TEXTENCODING_UTF8); \ - curl_easy_setopt(curl, \ - CURLOPT_USERPWD, \ - aUserPsswd.getStr()) - - - FILE* FTPURL::open() throw(curl_exception) { |