diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-10-04 15:00:25 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-10-04 15:00:25 +0200 |
| commit | cf1f8d377549c6cb5ad9475dcd5ec5f48738a8e8 (patch) | |
| tree | 8fb096c1760e22f4d9d73c532727455966822636 /USearch.pas | |
| parent | 3ecc07595f41f436430291fb2299dd540c01f292 (diff) | |
| download | tuxcmd-cf1f8d377549c6cb5ad9475dcd5ec5f48738a8e8.tar.xz | |
Consolidate plugin IDs
This breaks custom-chosen plugins for saved connections (with automatic fallback to 'auto')
Diffstat (limited to 'USearch.pas')
| -rw-r--r-- | USearch.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/USearch.pas b/USearch.pas index 4339f5e..808027d 100644 --- a/USearch.pas +++ b/USearch.pas @@ -592,7 +592,7 @@ begin if b then Break; end; if b then begin - DebugMsg(['Found plugin ''', Plugin.VFSName, ''', trying to open the archive ''', archive, '''']); + DebugMsg(['Found plugin ''', Plugin.ModuleID, ''', trying to open the archive ''', archive, '''']); AEngine := TVFSEngine.Create(Plugin); (AEngine as TVFSEngine).ArchiveMode := True; b := b and ((AEngine as TVFSEngine).VFSOpenEx(archive, nil, nil, nil, nil) = 0); @@ -988,7 +988,7 @@ begin if (not Data^.IsDir) and FSearchArchives and (not (FEngine is TVFSEngine)) then begin Plugin := FindVFSPlugin(FileName); if Plugin <> nil then begin - DebugMsg(['Found plugin ''', Plugin.VFSName, ''', trying to open the archive ''', FileName, '''']); + DebugMsg(['Found plugin ''', Plugin.ModuleID, ''', trying to open the archive ''', FileName, '''']); xEngine := TVFSEngine.Create(Plugin); xEngine.ParentEngine := FEngine; xEngine.ArchiveMode := True; |
