(file) Return to InstanceFile.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Repository / Attic

Diff for /pegasus/src/Pegasus/Repository/Attic/InstanceFile.cpp between version 1.1.2.1 and 1.1.2.2

version 1.1.2.1, 2001/08/21 00:30:21 version 1.1.2.2, 2001/10/30 00:48:04
Line 164 
Line 164 
     if (FileSystem::existsNoCase(path, realPath))     if (FileSystem::existsNoCase(path, realPath))
     {     {
         ArrayDestroyer<char> p(realPath.allocateCString());         ArrayDestroyer<char> p(realPath.allocateCString());
         ifstream is(p.getPointer());          ifstream is(p.getPointer(), ios::binary);
  
         if (!is)         if (!is)
         {         {
Line 358 
Line 358 
     // open the instance file     // open the instance file
     //     //
     ArrayDestroyer<char> p(path.allocateCString());     ArrayDestroyer<char> p(path.allocateCString());
     ifstream is(p.getPointer(), ios::in);      ifstream is(p.getPointer(), ios::in | ios::binary);
  
     if (!is)     if (!is)
     {     {
Line 406 
Line 406 
     // Open the instance file     // Open the instance file
     //     //
     ArrayDestroyer<char> q(realPath.allocateCString());     ArrayDestroyer<char> q(realPath.allocateCString());
     ifstream is(q.getPointer(), ios::in);      ifstream is(q.getPointer(), ios::in | ios::binary);
  
     if (!is)     if (!is)
     {     {


Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2