Skip to content

Commit e463331

Browse files
committed
Merge pull request #9 from bjorg/master
Fix for Read_ofx_content_53 unit test under mono.
2 parents 29f968a + abcf405 commit e463331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sgmlreaderdll/SgmlReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ private void LazyLoadDtd(Uri baseUri)
465465
}
466466
else
467467
{
468-
baseUri = new Uri(new Uri(Directory.GetCurrentDirectory() + "\\"), this.m_syslit);
468+
baseUri = new Uri(new Uri(Directory.GetCurrentDirectory() + "/"), this.m_syslit);
469469
}
470470
this.m_dtd = SgmlDtd.Parse(baseUri, this.m_docType, this.m_pubid, baseUri.AbsoluteUri, this.m_subset, this.m_proxy, null);
471471
}

0 commit comments

Comments
 (0)