Changeset 11450 for trunk

Show
Ignore:
Timestamp:
09/26/08 11:06:19 (3 months ago)
Author:
ejhernandez@…
Message:

Bugfix: minor problem with ":" char refs #1126

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/extra/esofttool/esofttool.cc

    r11448 r11450  
    468468 
    469469                std::string filename = file.str(); 
     470                uint pos = filename.find(':'); 
     471                if ( pos != std::string::npos ) { 
     472                  filename.replace(pos, 1, "%3a"); 
     473                } 
    470474 
    471475                for(pkgCache::VerFileIterator verFile = curverObject.FileList();