summaryrefslogtreecommitdiff
path: root/uui/source/iahndl-ssl.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-05 08:24:57 +0100
committerDavid Tardon <dtardon@redhat.com>2010-11-05 08:24:57 +0100
commitb99dce8d43bbf394063224074c2f1a645f49d518 (patch)
tree3eb832f1608c1c776dea75c00b3b18e7ebcc5700 /uui/source/iahndl-ssl.cxx
parentf69d9079edd846c0916fd087a9094b6e89f2766f (diff)
Easy Hacks : RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'uui/source/iahndl-ssl.cxx')
-rw-r--r--uui/source/iahndl-ssl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/iahndl-ssl.cxx b/uui/source/iahndl-ssl.cxx
index d22a2da6b7e2..9271219b6b74 100644
--- a/uui/source/iahndl-ssl.cxx
+++ b/uui/source/iahndl-ssl.cxx
@@ -83,7 +83,7 @@ isDomainMatch(
if (hostName.equalsIgnoreAsciiCase( certHostName ))
return true;
- if ( 0 == certHostName.indexOf( rtl::OUString::createFromAscii( "*" ) ) &&
+ if ( 0 == certHostName.indexOf( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "*" )) ) &&
hostName.getLength() >= certHostName.getLength() )
{
rtl::OUString cmpStr = certHostName.copy( 1 );