At 08:18 AM 11/15/2004, Yussef Alkhamrichi wrote:

>I found some strange code in 2 lines that are indirectly related to the 
>configuration, in host.h the function void Configure(String *VirtualPath, 
>String *PhysicalPath, HostFactory *Factory, int HostKey) contains these lines:
>
>physicalPath = physicalPath->Substring(0, VirtualPath->get_Length() - 1);
>virtualPath = virtualPath->Substring(0, VirtualPath->get_Length() - 1);
>
>shouldn't these be:
>
>physicalPath = physicalPath->Substring(0, physicalPath->get_Length() - 1);
>virtualPath = virtualPath->Substring(0, virtualPath->get_Length() - 1);

Patched for 2.0.1, thanks!

Bill


Reply via email to