Author: wrowe Date: Sat Jan 1 18:20:03 2005 New Revision: 123868 URL: http://svn.apache.org/viewcvs?view=rev&rev=123868 Log:
We used nullCulture in the WorkerRequest, so use this shorthand in the Host object. Modified: httpd/mod_aspdotnet/trunk/Apache.Web/Host.h Modified: httpd/mod_aspdotnet/trunk/Apache.Web/Host.h Url: http://svn.apache.org/viewcvs/httpd/mod_aspdotnet/trunk/Apache.Web/Host.h?view=diff&rev=123868&p1=httpd/mod_aspdotnet/trunk/Apache.Web/Host.h&r1=123867&p2=httpd/mod_aspdotnet/trunk/Apache.Web/Host.h&r2=123868 ============================================================================== --- httpd/mod_aspdotnet/trunk/Apache.Web/Host.h (original) +++ httpd/mod_aspdotnet/trunk/Apache.Web/Host.h Sat Jan 1 18:20:03 2005 @@ -36,7 +36,7 @@ static Encoding *utf8_encoding = new UTF8Encoding(false); // our default cultureNeutral object for proper strcmp's - static CultureInfo *neutralCulture = CultureInfo::InvariantCulture; + static CultureInfo *nullCulture = CultureInfo::InvariantCulture; // No trailing slash for this URI-path String *virtualPath; @@ -149,7 +149,7 @@ if (testpath->get_Chars(0) == L'/') { if (String::Compare(testpath, 0, virtualPath, 0, virtualPath->get_Length(), - true, neutralCulture)) { + true, nullCulture)) { String *res = String::Concat(L"MapPath: could not map ", path, L" within ", virtualPath); LogRequestError(res, APLOG_DEBUG, 0, rr);