diff options
author | Chr. Rossmanith <ChrRossmanith@gmx.de> | 2013-03-27 22:05:38 +0100 |
---|---|---|
committer | Chr. Rossmanith <ChrRossmanith@gmx.de> | 2013-03-27 22:05:38 +0100 |
commit | 97257aeef6c402b34e316eeccd9b022940a805cd (patch) | |
tree | ef90c279eca1e5cc8310cf460066acc00a0a9078 /ucb/source/ucp/webdav-neon/NeonUri.cxx | |
parent | 72a5c2a56ae1510380c8993fafffa7916fcda7e1 (diff) |
clear -Werror=write-strings in NeonUri.cxx
Change-Id: I7a67c1858b2954ca0522320b9008d70ed1afd64c
Diffstat (limited to 'ucb/source/ucp/webdav-neon/NeonUri.cxx')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonUri.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonUri.cxx b/ucb/source/ucp/webdav-neon/NeonUri.cxx index ce49fdbf2c6d..bd2fa89c1db4 100644 --- a/ucb/source/ucp/webdav-neon/NeonUri.cxx +++ b/ucb/source/ucp/webdav-neon/NeonUri.cxx @@ -52,21 +52,21 @@ using namespace webdav_ucp; namespace { -const ne_uri g_sUriDefaultsHTTP = { "http", +const ne_uri g_sUriDefaultsHTTP = { (char *) "http", NULL, NULL, DEFAULT_HTTP_PORT, NULL, NULL, NULL }; -const ne_uri g_sUriDefaultsHTTPS = { "https", +const ne_uri g_sUriDefaultsHTTPS = { (char *) "https", NULL, NULL, DEFAULT_HTTPS_PORT, NULL, NULL, NULL }; -const ne_uri g_sUriDefaultsFTP = { "ftp", +const ne_uri g_sUriDefaultsFTP = { (char *) "ftp", NULL, NULL, DEFAULT_FTP_PORT, |