diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-08-05 20:31:29 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-08-05 20:31:47 +0200 |
commit | c04c2114d9159646dddd4807d026c9fee6953817 (patch) | |
tree | 27c9530336ed5cc6652ee6147ff175875e4c6a64 /ucb | |
parent | a76dac1fb62823c357ad8f2bd789483b7ea7badd (diff) |
Remove unused macros
Change-Id: I184a7f9c65dd762407b2431d9c6557e718b954b2
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) { |